/**************************************/
/************ General CSS *************/
/**************************************/
body {
    color: #fcc029;
    font-family: 'Montserrat', sans-serif;
    background: #545454;

}

a {
    color: #fcc029;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
}

h4{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
}


h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
}


h4,
h5,
h6 {
    font-weight: 500;
}



/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #000000;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 35px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: 9;
}

.back-to-top i {
    color: #fcc029;
}

.back-to-top:hover {
    background: #545454;
}

.back-to-top:hover i {
    color: #ffffff;
}



/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    padding: 100px 0 200px 0;
    text-align: center;
    background: linear-gradient(rgba(252, 192, 41, 0.95), rgba(252, 192, 41, 0.95)), url(../img/header.jpg) no-repeat top center;
    background-size: cover;
}

.header::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #545454;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.header .container {
    max-width: 700px;
}

.header h4 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 3px;
}

.header h1 {
    position: relative;
    color: #111111;
    font-size: 200px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 45px;
}

.header h1::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #545454;
}

.header h3 {
    color: white;
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 40px;
}

.header .btn {
    padding: 15px 35px;
    color: #545454;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0;
    background: #ffffff;
}

.header .btn:hover {
    background: #000000;
    color: #fcc029;
}

.header .btn i {
    margin-right: 5px;
}

@media(max-width: 767.98px) {
    .header h1 {
        font-size: 120px;
    }
    
    .header p {
        font-size: 20px;
    }
}

@media(max-width: 575.98px) {
    .header h1 {
        font-size: 90px;
    }
    
    .header p {
        font-size: 18px;
    }
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header h4 {
    color: white;
    font-size: 35px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 3px;
}

.section-header h2 {
    color: #fcc029;
    font-size: 120px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-header p {
    font-size: 22px;
    margin: 0;
}

@media(max-width: 767.98px) {
    .section-header h4 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 90px;
    }
    
    .section-header p {
        font-size: 20px;
    }
}

@media(max-width: 575.98px) {
    .section-header h4 {
        font-size: 25px;
    }
    
    .section-header h2 {
        font-size: 60px;
    }
    
    .section-header p {
        font-size: 18px;
    }
}



/**************************************/
/************* About CSS **************/
/**************************************/
.about {
    position: relative;
    padding: 0 0 200px 0;
    background: #ffffff;
}

.about::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #545454;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.about .col-md-6 {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    overflow: hidden;
}

.about .about-img img {
    width: 100%;
}

.about .about-content {
    position: relative;
    width: 100%;
    padding: 0 30px 30px 30px;
    background: #f6f8fa;
}

.about .about-content::before {
    position: absolute;
    content: "";
    height: 90px;
    left: 0;
    right: 0;
    top: -89px;
    background: #f6f8fa;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.about .about-content h2 {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    top: -30px;
    z-index: 1;
}

.about .about-content p {
    position: relative;
    font-size: 18px;
    top: -20px;
}

.about .btn {
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #88B04B;
    border-radius: 0;
    top: -10px;
}

.about .btn:hover {
    background: #111111;
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    position: relative;
    background: #545454;
    padding: 0 0 200px 0;
    margin-top: -150px;
}

/* .service::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #fcc029;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
} */

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.service .service-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.service .service-icon {
    position: relative;
    width: 80px;
    height: 100px;
    padding: 27px 0;
    text-align: center;
    background: #fcc029;
}

.service .service-icon::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 50px;
    top: 0;
    right: -50px;
    background: #fcc029;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 1;
}

.service .service-icon i {
    font-size: 45px;
    color: #ffffff;
    margin-left: 10px;
}

.service .service-title {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    height: 100px;
    padding-left: 45px;
    background: #ffffff;
}

.service .service-title h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.service .service-detail {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #ffffff;
}

.service .service-detail p {
    font-size: 18px;
    margin: 0;
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 0px 0 200px 0;
    background: #fcc029;
}

.call-to-action::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #545454;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.call-to-action .container {
    max-width: 700px;
}

.call-to-action .section-header h4,
.call-to-action .section-header h2 {
    color: #545454;
}

.call-to-action .section-header::before {
    background: #ffffff;
}

.call-to-action .section-header p {
    color: #545454;
}

.call-to-action .btn {
    padding: 15px 30px;
    color: #545454;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: white;
    border-radius: 0;
    transition: 0.3s;
}

.call-to-action .btn:hover {
    color: #fcc029;
    background: black;
}

.call-to-action .btn i {
    margin-right: 5px;
}



/**************************************/
/************ Portfolio CSS ***********/
/**************************************/
.portfolio {
    position: relative;
    padding: 0 0 200px 0;
    background: #545454;
}

.portfolio::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #545454;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.portfolio .portfolio-item .portfolio-link {
    position: absolute;
    width: 100%;
    top: -70px;
    padding: 0 15px 15px 0;
    text-align: center;
    background: #ffffff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    padding: 4px 0;
    text-align: center;
    font-size: 22px;
    color: #fcc029;
    background: #545454;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.portfolio .portfolio-item:hover .portfolio-link {
    top: 0;
}

.portfolio .portfolio-item .portfolio-info {
    position: relative;
    width: 100%;
    padding: 0 15px 30px 15px;
    text-align: center;
    background: #f6f8fa;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    padding-top: 30px;
}

.portfolio .portfolio-item .portfolio-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/************* Pricing CSS ************/
/**************************************/
.pricing {
    position: relative;
    background: #f6f8fa;
    padding: 0 0 200px 0;
}

.pricing::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.pricing .price-plan {
    position: relative;
    background: #111111;
    padding: 20px 0 80px 0;
}

.pricing .price-plan::after {
    position: absolute;
    content: "";
    height: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.pricing .price-overlay {
    position: absolute;
    width: 100%;
    top: -70px;
    padding: 15px 0;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #88B04B;
    background: #f6f8fa;
    transition: all .3s;
    z-index: 1;
}

.pricing .price-content:hover .price-overlay {
    top: 0;
}

.pricing .price-title {
    display: block;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing .price-title i {
    color: #ffffff;
    font-size: 35px;
    margin-right: 10px;
}

.pricing .price-amount {
    position: relative;
    font-family: 'Arial, Helvetica', sans-serif;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.pricing .price-amount span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: lowercase;
}

.pricing .price-amount span:first-child {
    position: relative;
    top: -27px;
    left: -5px;
}

.pricing .price-date {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom:0;
}

.pricing .price-details {
    padding: 0;
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.pricing .price-details li {
    padding: 6px 30px;
    border-bottom: 1px solid #f6f8fa;
}

.pricing .price-details li:last-child {
    border: none;
}

.pricing .price-details li i.fa-check {
    color: #88B04B;
    margin-right: 8px;
}

.pricing .price-details li i.fa-times {
    color: #ea4335;
    margin-right: 12px;
}

.pricing .btn {
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.pricing .price-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    background: #111111;
    color: #ffffff;
}

.pricing .price-btn:hover {
    background: #88B04B;
}

.pricing .features-price-btn {
    background: #88B04B;
}

.pricing .features-price-btn:hover {
    background: #353535;
}

.pricing .features-price .price-plan {
    background: #88B04B;
}

.pricing .features-price .price-plan p{
    color:#FFFFFF;
}

.pricing .features-price .price-plan .price-amount, 
.pricing .features-price .price-plan .price-amount span {
    color: #ffffff;
}

.pricing .features-price .price-plan .price-title {
    color:#ffffff;
}



/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 0 0 90px 0;
    background: #545454;
    text-align: center;
    margin-top: 80px;
}

.contact .contact-inner h2 {
    font-size: 60px;
    margin-bottom: 30px;
    padding-bottom: 60px;
}

.contact .contact-inner h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 8px;
    left: calc(50% - 50px);
    bottom: 60px;
    background: #666666;
}

.contact .contact-inner i {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    padding: 22px 0;
    text-align: center;
    font-size: 45px;
    color: #ffffff;
    background: #88B04B;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.contact .contact-inner p {
    font-size: 35px;
    font-weight: 500;
}

@media(max-width: 767.98px) {
    .contact .contact-inner h2 {
        font-size: 45px;
    }
    
    .contact .contact-inner i {
        width: 60px;
        height: 60px;
        padding: 12px 0;
        font-size: 35px;
    }
    
    .contact .contact-inner p {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media(max-width: 575.98px) {
    .contact .contact-inner h2 {
        font-size: 30px;
    }
    
    .contact .contact-inner i {
        width: 50px;
        height: 50px;
        padding: 12px 0;
        font-size: 25px;
    }
    
    .contact .contact-inner p {
        font-size: 24px;
        margin-bottom: 30px;
    }
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
    padding: 5px 0 30px 0;
    background: #fcc029;
    text-align: center;
}

.footer .social-links {
    padding-top: 30px;
}

.footer .social-links a {
    font-size: 28px;
    display: inline-block;
    background: #545454;
    color: #fcc029;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    text-align: center;
    width: 45px;
    height: 45px;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: #000000;
    color: #ffffff;
}

.footer .copyright {
    padding-top: 25px;
    color: #000000;
}

.footer .credit {
    padding-top: 15px;
    color: #000000;
}

.footer .copyright a,
.footer .credit a {
    color: #111111;
    font-weight: 500;
}

.footer .copyright a:hover,
.footer .credit a:hover {
    color: #000000;
}




/* Base styles for mobile devices */
.column {
    width: 100%;
  }
  
  /* Two columns for tablets in landscape orientation */
  @media screen and (min-width: 600px) {
    .column {
      width: 50%;
    }
  }
  
  /* Four columns for desktops and larger devices */
  @media screen and (min-width: 992px) {
    .column {
      width: 25%;
    }
  }
  

  /* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 3px; /* Set the width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the track */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #fcc029; /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
  }
  
  /* For Firefox */
  html {
    scrollbar-width: thin; /* Sets scrollbar width to thin */
    scrollbar-color: #fcc029 #545454; /* Scrollbar color and track color */
  }
  
  .whatsapp-button {
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    
}

.whatsapp-button img {
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-button {
    animation: float 3s ease-in-out infinite;
}

#watermark, .htmlcodex { 
    display: none !important; 
    visibility: hidden !important; 
  }
  





  /* #EXTRA CSS */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem; /* Add padding to avoid touching edges */
}

.logo {
    background-color: white;
    max-width: 90vw;  /* Responsive width */
    max-height: 60vh; /* Responsive height */
    width: 60rem;
    height: 30rem;
    object-fit: contain;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .logo {
        width: 80vw; /* Adjust width for smaller screens */
        height: auto; /* Maintain aspect ratio */
        max-height: 40vh; /* Reduce max height on smaller screens */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 90vw; /* Make it occupy more space */
        max-height: 30vh; /* Further reduce height */
    }
}


/* #PROFILESOCIAL-ICONS */



.portfolio-info {
    text-align: center; /* Centers all content */
    padding: 20px;
}

.linkedin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcc029; /* Yellow background */
    width: 50px;
    height: 50px;
    text-decoration: none;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: 0.3s ease-in-out;
    margin: 10px auto; /* Centers button horizontally */
}

.linkedin-icon {
    width: 60%; /* Adjusts size inside the hexagon */
    height: auto;
}

.linkedin-btn:hover {
    background: #545454; /* Dark grey on hover */
}

.linkedin-btn:hover .linkedin-icon {
    filter: brightness(1) invert(0); /* Changes to black/yellow on hover */
}

.footer , .copyright{
    position: relative;
    width: 100%;
    background: #fcc029;
    text-align: center;
    padding: 50px 20px;
    opacity: 1;
    visibility: visible;
}



.email-floater {
    position: fixed;
    bottom: 50px;
    left: 20px;
    padding: 15px 30px;
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fcc029;
    border-radius: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Prevents interaction when hidden */
}

.email-floater i {
    font-size: 20px;
    color: #000000;
}

.email-floater:hover {
    background: #545454;
    color: rgb(255, 255, 255);
}

.email-floater:hover i {
    color: white;
}



/* ===== Video Reviews Section ===== */
.video-reviews-section {
    padding: 80px 0;
    width: 100%;
    text-align: center;
    margin-top: -200px;  /* Moves the element 20px up */
    margin-left: -10px;

}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Video Grid - 3 Columns */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Space between videos */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 280px; /* Adjust as needed */
    aspect-ratio: 4 / 5; /* Maintains 4:5 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button::before {
    content: '▶'; /* Play icon */
    font-size: 20px;
    color: white;
}






.image-container {
    position: relative;
    width: 100%; /* Responsive width */
    max-width: 300px; /* Optional: Limit max width */
    aspect-ratio: 9 / 16; /* Maintains 16:9 portrait aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container while keeping the aspect ratio */
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Responsive Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusts for different screens */
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }



.contact-email {
    color: white;
    text-decoration: none;
    font-size: 38px; /* Default font size */
}

@media (max-width: 768px) {
    .contact-email {
        font-size: 22px; /* Adjust font size for mobile */
        
    }
}