/* styles.css */
:root {
    --goldish-orange: #f28d1f;
    --black: #000000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

/* back to top arrow */
#back-to-top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: none;
  z-index: 1000;
  cursor: pointer;
}

#back-to-top img {
  width: 50px;      /* Adjust size as needed */
  height: 50px;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

#back-to-top:hover img {
  opacity: 1;
}
@media(max-width:768px){
    #back-to-top {
  position: fixed;
  bottom: 40px;
  right: 2px;
  display: none;
  z-index: 1000;
  cursor: pointer;
}



}

/* Hero Section */
.hero-section1 {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 70px; /* Offset for the navigation */
   
}

.hero-section1 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content.hidden {
    display: none;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--goldish-orange);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--goldish-orange);
    border: none;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--goldish-orange);
    border: 1px solid var(--goldish-orange);
}
@media (max-width: 768px) {
    .hero-section1 {
        height: 50vh; /* Adjust height for mobile */
    }

    .hero-section1 video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure it covers the section completely */
        z-index: 0; /* Ensure it stays behind the content */
        pointer-events: none; /* Prevent interactions with the video */
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6); /* Keeps the text readable with a darker overlay */
        z-index: 1; /* Sits above the video */
    }

    .hero-content {
        position: relative;
        z-index: 2; /* Ensures content stays on top */
    }
}

/* Navigation Bar */
.hero-nav {
    position: absolute;
    top: 2%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 3;
}

.hero-logo {
    width: 220px; /* Adjust the size of the logo */
    height: auto;
}

.nav-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: #222;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease;
   
}

.nav-menu a {
    position: relative;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    z-index: 1;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Main Nav Link */
.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
/* Dropdown Toggle (Arrow) */
.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 5px; /* Add space between text & arrow */
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px; /* Increase width for better fit */
    max-width: 250px; /* Ensure it doesn't overflow */
    z-index: 1000; /* Ensure it appears above other content */
    flex-direction: column;
    
    
}

/* Dropdown Links */
.dropdown-menu a {
    color: white;
    padding: 12px 20px;  /* More padding for better spacing */
    display: block;
    text-align: left;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap; /* Prevents wrapping into two lines */
}

/* Hover Effect */
.dropdown-menu a:hover {
    background: linear-gradient(45deg, #f28d1f, #1a1406);
    border-radius: 8px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}
/* Ensure only clicking the button opens the dropdown */
.dropdown-toggle:focus + .dropdown-menu,
.dropdown-toggle:hover + .dropdown-menu {
    display: flex;
}
/* Style for the dropdown toggle button */
.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 5px;
}
/* When dropdown is open (using JS to toggle class) */
.dropdown.open .dropdown-menu {
    display: block;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100px; /* Increase width on mobile */
        left: -20px; /* Move it slightly left for alignment */
        right: auto; /* Ensures it doesn't stick to right */
       
        height: 600px;
    }
}

/* Reset the base span styling */
.nav-menu span {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 100%;
    background: linear-gradient(45deg, #f28d1f, #1a1406);
    border-radius: 8px;
    transition: .5s ease;
}

/* Clear all existing hover rules */
.nav-menu a:nth-child(1):hover~span,
.nav-menu a:nth-child(2):hover~span,
.nav-menu a:nth-child(3):hover~span,
.nav-menu a:nth-child(4):hover~span,
.nav-menu a:nth-child(5):hover~span {
    display: none; /* Turn off all existing hover effects */
}

/* Add rules for the specific links we want to have the hover effect */
/* Home link */
.nav-menu a:first-child:hover~span {
    left: 0;
    display: block;
}

/* Services link */
.nav-menu a:nth-child(2):hover~span {
    left: 95px;
    display: block;
}

/* Contact link - with precise positioning based on your screenshot */
.nav-menu a:last-child:hover~span {
    left: 595px; /* Adjust this value based on exact position */
    width: 105px;
    display: block;
}

/* Turn off hover effect for dropdowns */
.nav-menu .dropdown:hover~span {
    display: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Open and Close States */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu.hidden {
    transform: translateX(100%);
    display: none;
}

.nav-menu.visible {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(34, 34, 34, 0.5); /* Semi-transparent black */
    border-radius: 8px;
    padding: 1rem;
    gap: 1rem;
    width: 200px;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Initially hidden */
    }
    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }
}

/* Slider Section */
.slider-section {
    position: relative;
  overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.slider {
    display: flex;
  
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    position: relative;
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
}

.slide {
    flex: 0 0 100%; /* Each slide takes full width */
    text-align: center;
    background-color: var(--goldish-orange); /* Set background color for visibility */
    color: var(--white);
    padding: 4rem 2rem;
    transition: transform 0.5s ease-in-out;
    display: flex; /* Align text and icons properly */
    align-items: center;
    justify-content: center;
    width:100%;
}

.slide h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1rem;
    margin-bottom: 0;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-navigation button {
    background-color: var(--goldish-orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-navigation button:hover {
    background-color: var(--white);
    color: var(--goldish-orange);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.slider-indicators button {
    width: 10px;
    height: 10px;
    background-color: var(--goldish-orange);
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicators button.active {
    background-color: var(--black);
}

/* Slide Content Layout */
.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.slide .text {
    max-width: 60%;
    text-align: center;
}

.slide .icon {
    max-width: 30%;
    text-align: center;
    font-size: 3rem;
    color: var(--white);
}

.slide h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Specific Icon Styling */
.slide .icon i {
    font-size: 3.5rem;
    color: var(--white);
    transition: transform 0.3s ease, color 0.3s ease;
}

.slide:hover .icon i {
    transform: scale(1.1);
    color: var(--goldish-orange);
}


/* value proposition */
.value-proposition {
    background-color: #f8f9fa;
    padding: 4rem 1rem;
    text-align: center;
}

.value-proposition h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.proposition-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.proposition-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: calc(25% - 2rem); /* 4 cards per row */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proposition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.proposition-card .icon {
    margin-bottom: 1rem;
}

.proposition-card .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.proposition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f28d1f;
}

.proposition-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .proposition-card {
        width: calc(50% - 2rem); /* 2 cards per row on tablets */
    }
}

@media (max-width: 480px) {
    .proposition-card {
        width: 100%; /* Full-width on smaller screens */
    }
}


/* End value proposition*/






/* Client Testimonials Section */
/* Client Testimonials Section */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    position: relative;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--goldish-orange);
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.testimonial {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    width: 320px;
    height: 420px; /* Set a fixed height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures equal spacing between elements */
    overflow: hidden; /* Prevents overflow */
    position: relative;
}




.profile {
    margin-bottom: 1.5rem;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--goldish-orange);
}

.testimonial-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}
.testimonial-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.testimonial-content p:last-child {
    font-size: 1rem;
    color: var(--goldish-orange);
}

/* Star Rating Styles */
.star-rating {
    margin-top: 10px;
    margin-bottom: 10px;
}

.star {
    color: #f28d1f; /* Gold color for stars */
    font-size: 1.5rem;
}





/* Footer Styling */
.footer {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    padding: 3rem 1rem;
    z-index: 1;
    padding: 3rem 1rem 6rem;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo,
.footer-contact,
.footer-links,
.footer-social {
    flex: 1;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--goldish-orange);
}

.footer-logo p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

#copyright {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--goldish-orange);
    text-align: left;
    margin-top: 1rem;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    font-size: 1.5rem; /* Consistent font size for all headings */
    color: #f28d1f;
    margin-bottom: 1rem;
}

.footer-contact p,
.footer-links ul,
.footer-social ul {
    margin: 0;
    padding: 0;
}

.footer-contact a {
    color: #f28d1f;
    text-decoration: none;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-social ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    color: var(--goldish-orange);
}

.footer-social ul li a {
    font-size: 1.5rem;
}

/* Align headings and content on the same vertical line */
.footer-content > div {
    display: flex;
    flex-direction: column;
}

.footer-skew {
    position: absolute;
    bottom: 0; /* Aligns it at the bottom */
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--goldish-orange);
    z-index: 0;

    /* Create the semi-arch shape */
    clip-path: ellipse(100% 75% at 85% 100%);
}




/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-contact,
    .footer-links,
    .footer-social {
        align-items: center;
        text-align: center;
    }
}

.whatsapp-button {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 16px;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
   width: 50px;   
  height: 50px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

