/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --webpage-bg-color: #f4f4f4;
    --webpage-font: Arial, sans-serif;
    --webpage-font-color: #333;

    /* --header-bg-color: #3b3d87; */
    --header-font-color: white;
    /* --header-bg-color: linear-gradient(25deg, #f8e6f8, #f7d2f7, #cdb8c9, #717171, red, green, #00ff); */
    --header-bg-color: linear-gradient(25deg,#003366 50%, red, green, #00ff);
    --header-bg-color: linear-gradient(25deg,white 70%, red, green, #00ff); /* fast-sign */
 

    --hero-font-color: rgb(87, 86, 86);
    --hero-font-color1: white;
    /* --hero-text-shadow: 1px 2px 0px #322f32e6; */
    --hero-text-shadow: 1px 1px 0px white;

    --footer-bg-color: #333;
    --footer-font-color: white;

    --cat-bg-gradient: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(7, 7, 7, 0.935));
    --cat1-img: url(../img/cat/1.jpg);
    --cat2-img: url(../img/cat/3_2.jpg);
    --cat3-img: url(../img/cat/3.jpg);
    --cat4-img: url(../img/cat/4.jpg);
    --cat5-img: url(../img/cat/5.jpg);
    --cat6-img: url(../img/cat/6.jpg);

    /* --card-gradient: linear-gradient(to right, rgb(58, 28, 113, 6), rgb(215, 109, 119, 0.5) 40%, rgb(255, 175, 123, 0.9)); */
    /* --card-gradient1: linear-gradient(to bottom right, rgb(87, 97, 178, 0.5), rgb(31, 197, 168, 1)) */
    /* --card-gradient: linear-gradient(45deg, rgba(255, 130, 53,0) 20%, rgba(48, 232, 191,1)); */
    --card-gradient: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgb(255, 255, 255, 0.6));
    --card1-img: url(../img/design/1.jpg);
    --card2-img: url(../img/design/2.jpg);
    --card3-img: url(../img/design/3.jpg);
    --card4-img: url(../img/design/4.jpg);
    --card5-img: url(../img/design/5.jpg);
    --card6-img: url(../img/design/6.jpg);
    --card7-img: url(../img/design/7.jpg);
}


/* Body styles */
body {
    display: flex;
    flex-direction: column;
    font-family: var(--webpage-font);
    background-color: var(--webpage-bg-color);
    color: var(--webpage-font-color);
}

.content {
    margin-left: 5rem;
    margin-right: 5rem;
}

.wpt-btn {
    box-shadow: rgba(215, 128, 212, 0.17) 0px -23px 25px 0px inset, rgba(220, 44, 208, 0.15) 0px -36px 30px 0px inset, rgba(108, 20, 111, 0.1) 0px -79px 40px 0px inset, rgba(129, 15, 125, 0.06) 0px 2px 1px, rgba(126, 18, 117, 0.09) 0px 4px 2px, rgba(77, 7, 75, 0.09) 0px 8px 4px, rgba(178, 7, 181, 0.09) 0px 16px 8px, rgba(104, 2, 106, 0.09) 0px 32px 16px;
    padding: 0.6rem;
    border-radius: 1rem;
    background-color: #ee93f4;
    border: none;
    color: rgb(253, 253, 253);
    font-weight: bolder;
    min-width: 8rem;
}

.wpt-btn:hover {
    transform: translateY(-2%);
    background-color: #95339c;
    text-shadow: 1px 1px 0px #780f8a;
}

.wpt-btn:active {
    background-color: #780f8a;
}


/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 0.7rem;
    background-color: var(--header-bg-color);
    color: var(--header-font-color);
    padding-top: 1rem;
}

.wheader {
    background: var(--header-bg-color);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 10vh;
    display: flex;
    align-items: start;
}

header .logo h1 {
    font-size: 1.8rem;
    margin-left: 2rem;
    text-shadow: 1px 2px 0px #322f32e6;

}

.h-logo {
display: flex;
flex-flow: row;
gap: 1rem;
}
 .h-logo h1 {
color: var(--webpage-font-color);
 }

 .mylogo {
width: 10rem;
align-items: center;
}

header nav {
    position: relative;
    margin-right: 2vm;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

header nav a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #ff6347;
    font-weight: bolder;
}

section {
    margin-top: 1rem;
}

.category {
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* Hero Section Styling */
.hero {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    /* Add padding to the top and bottom */
    background-color: #e8eef1;
    box-shadow: 0 4px 8px rgba(37, 2, 87, 0.1);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.hero-columns {
    display: flex;
    justify-content: space-between;
    /* Space between columns */
}

.hero-column {
    width: 100%;
    height: 40vh;
    /* Adjust width to create space between columns */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Space between slides */
    padding: 0 1rem;
    /* Add padding to the left and right */
}

.hero-slide {
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 15px;
    /* Add border-radius for better appearance */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add box-shadow for depth */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--hero-font-color);
    text-shadow: var(--hero-text-shadow);
    z-index: 2;
}

.hero-content h2 {
    font-size: 4vh;
    opacity: 0;
    transform: translateY(4rem);
    animation: slideIn 1s forwards 0.5s;
}

.hero-content p {
    font-size: 2.5vh;
    opacity: 0;
    transform: translateY(4rem);
    animation: slideIn 1s forwards 1s;
}

/* Keyframes for animations */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(4rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation buttons styling */
.prev-hero,
.next-hero {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: whitesmoke;
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 2;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev-hero:hover,
.next-hero:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.prev-hero {
    left: 1rem;
}

.next-hero {
    right: 1rem;
}

/* Footer styling */
footer {
    padding: 1rem;
    text-align: center;
    background-color: var(--footer-bg-color);
    color: var(--footer-font-color);
    font-size: 0.9rem;
}
.footer-priv a {
    color: var(--footer-font-color);
    font-size: 0.75rem;
}

.footer-by-img {
    width: 5rem;
}
.footer-by {
    display: flex;
    font-size: smaller;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-priv {

}
/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .content {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        padding: 2rem 0;
        background-color: #333;
        position: absolute;
        top: 6rem;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    header nav ul.active {
        display: flex;
    }

    header nav a {
        padding: 10px 0;
        width: 100%;
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .prev-hero,
    .next-hero {
        display: none;
        min-width: 11rem;
    }
}

.catStrip {
    margin-top: 0.5rem;
    padding: 0.3rem;
    /* border: 2px solid rgb(96 139 168); */
    height: 30rem;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "item1 item2 item2 item3"
        "item1 item4 item5 item6";
    background-position: top;
}

.box1 {
    grid-area: item1;
    background: var(--cat-bg-gradient), var(--cat1-img);
    background-position: top;
    border-radius: 5%;
}

.box2 {
    grid-area: item2;
    background: var(--cat-bg-gradient), var(--cat2-img);
    background-position: center;
    border-radius: 5%;
}

.box3 {
    grid-area: item3;
    background: var(--cat-bg-gradient), var(--cat3-img);
    background-position: top;
    border-radius: 5%;
}

.box4 {
    grid-area: item4;
    background: var(--cat-bg-gradient), var(--cat4-img);
    background-position: top;
    border-radius: 5%;
}

.box5 {
    grid-area: item5;
    background: var(--cat-bg-gradient), var(--cat5-img);
    background-position: top;
    border-radius: 5%;
}

.box6 {
    background: var(--cat-bg-gradient), var(--cat6-img);
    grid-area: item6;
    background-position: top;
    border-radius: 5%;
}

.box {
    /* border: 2px dotted rgb(96 139 168); */
    /* background-color: #3b3d87; */
    color: #f4f4f4;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 1rem;
    padding: 2rem;
    flex-direction: column;
    min-width: 12rem;
}

.catgory-text {
    display: flex;
    flex-direction: column;
}

.category-label {
    font-family: 'Shrikhand', cursive;
    font-size: 2.5vw;
    font-weight: bolder;
    text-shadow: 1px 1px 0px #c129dc;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-btn {
    box-shadow: rgba(215, 128, 212, 0.17) 0px -23px 25px 0px inset, rgba(220, 44, 208, 0.15) 0px -36px 30px 0px inset, rgba(108, 20, 111, 0.1) 0px -79px 40px 0px inset, rgba(129, 15, 125, 0.06) 0px 2px 1px, rgba(126, 18, 117, 0.09) 0px 4px 2px, rgba(77, 7, 75, 0.09) 0px 8px 4px, rgba(178, 7, 181, 0.09) 0px 16px 8px, rgba(104, 2, 106, 0.09) 0px 32px 16px;
    padding: 0.6rem;
    border-radius: 10px;
    background-color: #ee93f4;
    border: none;
    color: rgb(253, 253, 253);
    font-weight: bolder;
    min-width: 8rem;
}

.category-desc {
    font-size: 60%;
    margin-top: -3%;
    padding-top: 0;
    color: #333;
}

.box:hover .category-btn {
    transform: scale(1.05);
    background-color: #95339c;
}

.box:hover .category-label {
    transform: scale(1.3);
    text-shadow:
        1px 1px 0px #780f8a;
}
.box:hover .category-desc {
    transform: scale(1.1);
    margin-top: -1%;
    /* color: black;
    text-shadow: 0.5px 1px 0px #fbfafb; */
    color: white;
    text-shadow: 0.5px 1px 0px #000000;
}

.category-btn:active {
    background-color: #430847;
}

/* Testimononal styles */
.testimonial-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .testimonial-container {
    display: flex;
    flex-direction: row;  /* Align testimonials horizontally */
    gap: 2rem; /* Space between testimonials */
    overflow-x: auto; /* Allow horizontal scrolling */
    padding: 1rem;
    width: 100rem; /* Set fixed width for the container */
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-out;
    width: 47rem; /* Fixed width for each testimonial */
    flex-shrink: 0; /* Prevent shrinking */
  }
  
  .testimonial:hover {
    transform: translateY(-10px);
  }
  
  .testimonial .quote {
    position: absolute;
    color: rgb(0, 0, 0);
    z-index: 0;
  }
    
  .testimonial .quote.bottom {
    left: 100%;
    bottom: 40%;
    transform: translateX(-100%);;
  }
  
  .testimonial .quote-icon {
    font-size: 5rem;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 1;
    padding-top: 40px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .author-info {
    text-align: left;
  }
  
  .author-name {
    font-weight: bold;
    color: #333;
  }
  
  .author-position {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 600px) {
    .testimonial-container {
      width: 100%;
      padding: 2rem;
    }
  
    .testimonial .quote {
      font-size: 4rem;
    }
  
    .testimonial-text {
      font-size: 1rem;
    }
  
    .testimonial {
      width: 300px; /* Adjust width on smaller screens */
    }
  }

  .user-feedback {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-top: 2rem;
    font-family: 'Shrikhand', cursive;
    font-size: 2rem;
    margin-bottom: 0;
    padding-bottom: 0;
}




.carousel-container {
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.carousel {
    margin-left: 1%;
    width: 98%;
    display: flex;
    overflow: hidden;
    gap: 3rem;
    /* margin-left: 5rem; */
    transition: transform 0.5s ease-in-out;
}

.card {
    border-radius: 10px;
    box-shadow: 0 14px 22px rgba(200, 8, 8, 0.1);
    padding: 2rem;
    width: 20rem;
    height: 15rem;
    flex-shrink: 0;
    text-align: center;
    transform: scale(1);
    transition: transform 0.3s ease;
}

/* .card:hover {
    transform: scale(1.05);
} */

.card h3 {
    font-family: 'Shrikhand';
    color: white;
    font-size: 1.5vw;
    font-weight: bolder;
    text-shadow: 1px 1px 0px #322f32e6;
    margin-bottom: 1rem;
}

.card:hover h3 {
    text-shadow: 1px 1px 0px #a610d8;
    transform: scale(1.1);
}

.card p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}
.card:hover p {
    text-shadow: 1px 1px 0px #322f32e6;
}
/* .btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
} */

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background-color: rgba(15, 15, 15, 0.238);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    transition: background-color 0.3s ease;
    /* height: 13rem; */
}

.prev-btn {
    border-radius: 50% 10% 10% 50%;
}
.next-btn {
    border-radius: 10% 50% 50% 10%;
}
.prev-btn:hover, .next-btn:hover {
    /* background-color: rgba(143, 143, 132, 0.238); */
    background-color: rgba(19, 8, 8, 0.5);
}

.card1 {
    background: var(--card1-img);
    background: var(--card-gradient), var(--card1-img);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /* box-shadow: 0 8 10px rgba(104, 2, 106, 0.09); */
}
.card2 {
    background: var(--card2-img);
    background: var(--card-gradient), var(--card2-img);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.card3 {
    background: var(--card3-img);
    background-image: var(--card-gradient), var(--card3-img);
    /* background: var(--card-gradient), var(--card3-img); */
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.card4 {
    background: var(--card4-img);
    background: var(--card-gradient), var(--card4-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.card5 {
    background: var(--card5-img);
    background: var(--card-gradient), var(--card5-img);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.card6 {
    background: var(--card6-img);
    background: var(--card-gradient), var(--card6-img);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.card7 {
    background: var(--card7-img);
    background: var(--card-gradient), var(--card7-img);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-btn {
    padding: 0.6rem;
    border-radius: 10px;
    background-color: #ee93f4;
    border: none;
    color: rgb(253, 253, 253);
    font-weight: bolder;
    min-width: 6rem;
}
.card-btn:hover {
    transform: scale(1.05);
    background-color: #ed62f7;
}
.card-btn:active {
    background-color: #95339c;
}

.logo-section {
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 8px rgba(161, 131, 204, 0.5);
    border-radius: 2%;
    overflow: hidden;

}

.logo-container {
    display: flex;
    flex-direction: row;
    overflow: hidden;

    width: fit-content;
    gap: 4rem;
    list-style: none;
    padding: 1rem;
    animation: scrollLogos 15s linear infinite;
}

.brand-logos {
    font-size: 36px;
}

.brand-logos:hover {
    transform: translateY(-40);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% + 100vw)); /* Adjusted to ensure seamless scrolling */
    }
}

