
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}
/* landing sctn1 */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero .image-container {
    display: flex;
    position: absolute;
    width: 200%;
    height: 100%;
    animation: scrollhero 40s linear infinite;
}
.hero .image-container img {
    width: 20%;
    height: auto;
    opacity: 0.8;
}
@keyframes scrollhero {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 4rem;
    margin: 0;
}
.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
}
.hero-content .btnhero {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background: #e91e63;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}
.hero-content .btn:hover {
    background: #d81b60;
}
.overlayhero {
    position: absolute;
    inset: 0;
    background: black;
    opacity:0.5;
}

/*  */
.role-models {
    max-width: 1500px;
    margin: auto;
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.role-models h2 {
    text-align: center;
    font-size: 2.5rem;
    /* margin-bottom: 20px; */
    color: #a1683a;
    font-weight: 700;
}
.role-models .gridrole {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.role-models .cardrole {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, opacity 0.3s;
    transform: translateY(20px);
}
.role-models .cardrole img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.role-models .cardrole .contentrole {
    padding: 20px;
}
.role-models .cardrole .contentrole h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #333;
    font-weight: 700;
}
.role-models .cardrole .contentrole p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.role-models .cardrole.in-viewrole {
    opacity: 1;
    transform: translateY(0);
}
.role-models .cardrole.in-viewrole:nth-child(odd) {
    animation: fadeInLeftrole 0.5s forwards;
}
.role-models .cardrole.in-viewrole:nth-child(even) {
    animation: fadeInRightrole 0.5s forwards;
}
@keyframes fadeInLeftrole {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRightrole {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
}
}
   
/* scnd sctn of home  */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.home-products2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
}
.home-product2 {
    width: 150px;
    text-align: center;
    margin-bottom: 20px;
}
.home-product2 img {
    width: 100%;
    border-radius: 5px;
}
.home-product2 p {
    margin: 10px 0 0;
    font-size: 12px;
}
.home-product2 .home-discount2 {
    font-size: 14px;
    font-weight: bold;
    background: #000;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}
.home-side-banner2 {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    color: #000;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 16px;
    cursor: pointer;
}
.home-side-banner2 a {
    color: inherit;
    text-decoration: none;
}
@media (max-width: 768px) {
    .home-coupons2 {
        flex-direction: column;
        align-items: center;
    }
    .home-coupon2 {
        width: 80%;
        margin-bottom: 20px;
    }
    .home-products2 {
        flex-direction: column;
        align-items: center;
    }
    .home-produc2 {
        width: 80%;
        margin-bottom: 20px;
    }
}
/* thrd sctn of home  */

.home-header3 {
    background: url('https://img.freepik.com/free-photo/top-view-golden-line-texture-with-copy-space_23-2148495625.jpg?uid=R164915749&ga=GA1.1.1697278897.1727156181&semt=ais_hybrid') no-repeat center center;
    background-size: cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Arial, sans-serif;
   
    background-color: #fff;
}
.home-header3 h1 {
    font-size: 48px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    z-index: 1;
}
.home-header3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
.home-carousel-container3 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.home-deals-container3 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.home-deal-item3 {
    min-width: calc(16% - 10px);
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.home-deal-item3:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.home-deal-item3 img {
    width: 100%;
    height: auto;
}
.home-deal-item3 .home-brand3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.home-deal-item3 .home-brand3 img {
    height: 20px;
    margin: 0 5px;
}
.home-deal-item3 .home-description3 {
    padding: 10px;
    font-size: 14px;
    color: #fff;
    background-color: #000;
}
.home-deal-item3 .home-price3 {
    padding: 10px;
    font-size: 18px;
    color: #FFD700;
    font-weight: bold;
    background-color: #000;
}
.home-deal-item3 .home-price3 del {
    color: #FFD700;
    margin-right: 5px;
}
.home-carousel-controls3 {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.home-carousel-controls3 button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s;
}
.home-carousel-controls3 button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1200px) {
    .home-deal-item3 {
        min-width: calc(22% - 10px );
    }
}
@media (max-width: 768px) {
    .home-deal-item3 {
        min-width: calc(45% - 10px);
    }
}
@media (max-width: 480px) {
    .home-deal-item3 {
        min-width: calc(90% - 10px);
    }
}
/* frth sctn of home  */

.home-container4 {
    font-family: Arial, sans-serif;
    background-color: #fff;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
  }
 .home-header4 {
    text-align: center;
    padding: 20px 0;
    font-size: 2em;
    font-weight: bold;
    color: #333;
  }
  .home-header4::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #d4af37;
    margin: 10px auto;
  }
  .home-categories4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Reduced gap for better spacing */
  }
  .home-category4 {
    flex: 1 1 calc(20% - 20px); /* Adjusted width for better responsiveness */
    border: 1px solid #d4af37;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s; /* Added transition for hover effect */
  }
  .home-category4:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
  }
  .home-category4 img {
    width: 100%;
   height: 230px;
    border-radius: 5px; /* Rounded corners for images */
  }
  .home-category4 h3 {
    margin: 10px 0;
    font-size: 1em; /* Increased font size for better readability */
  }
  .home-category4 p {
    margin: 5px 0;
    font-size: 0.9em; /* Increased font size for better readability */
  }
  .home-category4 span {
    display: block;
    margin: 5px 0;
    font-size: 1.4em; /* Increased font size */
    font-weight: bold;
    color: #d4af37; /* Eye-catching color */
  }
  .home-category4 a {
    color: #fff;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .home-category4 {
      flex: 1 1 calc(30% - 20px);
    }
  }
  @media (max-width: 480px) {
    .home-category4 {
      flex: 1 1 calc(100% - 20px);
    }
  }
/* fth sctn  */
.homesctn5-container {
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    color: black;
    background-image: url("./images/fth\ home\ sctn\ img.png");
    background-repeat: no-repeat;
    background-size: cover;
 
    background-position:50% 5%;
    padding: 40px;
    text-align: left;
    max-width: 1400px;
    margin: auto;
}
.homesctn5-header {
    font-size: 14px;
    color: black;
    margin-bottom: 10px;
}
.homesctn5-main-title {
    font-size: 42px;
    font-weight: bold;
    color: black;
    text-shadow: 
        2px 1px 0px black, 
        -1px -1px 0px black,
        1px -1px 0px black,
        -1px 1px 0px black;
    margin-bottom: 20px;
}
.homesctn5-button-container {
    text-align: right;
    margin-top: 20px;
 
}
.homesctn5-button {
    display: inline-flex;
    align-items: center;
    background-color: #e76f51;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}
.homesctn5-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    background-color: #f4a261;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #f4a261; /* Light orange border */
}
.homesctn5-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
    border-radius: 50%;
}
.homesctn5-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}
.homesctn5-button:hover {
    background-color: #d65a3e;
}
.homesctn5-button:hover i {
    transform: translateX(5px);
}
.homesctn5-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.homesctn5-service {
    text-align: center;
    max-width: 200px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #e2e2e2;
    background-color:rgb(219, 218, 218);
    
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.homesctn5-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.homesctn5-service img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.homesctn5-service-title {
    font-size: 18px;
    font-weight: bold;
    color: black;

    margin-bottom: 5px;
}
.homesctn5-service-description {
    font-size: 14px;
    color: black;
    
    text-align: center;
}
@media (max-width: 768px) {
    .homesctn5-main-title {
        font-size: 32px;
    }
    .homesctn5-services {
        flex-direction: column;
        align-items: center;
    }
    .homesctn5-button-container {
        text-align: center;
    }
}


/* sxth home sctn */

.sxthhomesctn-banner {
    background-color: #a64b2a;
    color: white;
    text-align: center;
    padding: 10px; /* Decreased padding to decrease height */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
}
.sxthhomesctn-banner span {
    display: block;
    margin: 10px 0;
}
.sxthhomesctn-banner span:first-child {
    font-size: 36px;
    font-weight: 700;
}
.sxthhomesctn-banner span:last-child {
    font-size: 28px;
    font-weight: 500;
    color: #ffdd57;
}
@media (max-width: 600px) {


    .sxthhomesctn-banner {
        font-size: 0.9rem; /* Smaller font size for paragraphs */
    }

 
}

/* svth home sctn  */
.svthhomesctn {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    height: 1460px;
}

/* Page Heading */
.svthhomesctn h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

/* Tagline */
.svthhomesctn-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}


/* Blog Section */
.svthhomesctn-blogsctn{
    margin: 30px;
  
    background-color: #f9d9d9;
}
.svthhomesctn-blog-section {
    margin-top: 50px;
    text-align: center;
}

.svthhomesctn-blog-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
}

.svthhomesctn-blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
   width: 100%;
    padding: 0 20px; /* Add padding to the sides */
}

.svthhomesctn-video-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(4, 4, 4, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.svthhomesctn-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.svthhomesctn-video-title {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #000000;
}

.svthhomesctn-video-description {
    padding: 15px;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
}

/* Responsive iframe */
.svthhomesctn  iframe {
    width : 100%;
    height: 215px;
    border: none;
    border-radius: 15px; /* Rounded corners for the iframe */
}



  /* extra sctn  */
.contacthome-container {
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f7;
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
    height: 300px;
    background-color: #f5f3ef; /* Greyish cream background color */
}
.contacthome-text-content {
    max-width: 50%;
}
.contacthome-text-content h1 {
    color: #4b2e2e;
    font-size: 2.5em; /* Increased font size */
    margin: 0 0 10px 0;
}
.contacthome-button {
    display: inline-flex;
    align-items: center;
    background-color: #e76f51;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}
.contacthome-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    background-color: #f4a261;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #f4a261; /* Light orange border */
}
.contacthome-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
    border-radius: 50%;
}
.contacthome-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}
.contacthome-button:hover {
    background-color: #d65a3e;
}
.contacthome-button:hover i {
    transform: translateX(5px);
}
.contacthome-image-content {
    max-width: 50%;
    height: 100%;
}
.contacthome-image-content img {
    border-radius: 0 20px 20px 0;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
    .contacthome-container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .contacthome-text-content, .contacthome-image-content {
        max-width: 100%;
    }
    .contacthome-image-content img {
        border-radius: 20px;
        clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}



