@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@100;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "Inter Tight", sans-serif;
}

body {
    line-height: 1.6;
    background: #f5f1e6; /* Clean ivory background */
    color: #333;      /* Soft black for text readability */
}
/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Base Styles for Sections */
.sectionanimation {
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1s forwards;
}

/* Optional: Add a delay to stagger the animations */
.sectionanimation.delay-1 {
    animation-delay: 0.2s;
}

.sectionanimation.delay-2 {
    animation-delay: 0.4s;
}

.sectionanimation.delay-3 {
    animation-delay: 0.6s;
}

/* Header Styles */
.header {
    padding: 15px 0;
}

.logo-container {
    flex: 1;
}

.logo-container img {
    max-width: 150px;
}

.mobile-menu-toggle {
    display: none;
}

/* Navigation Styles */
.navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navigation .menu {
    list-style: none;
    display: flex;
    margin: 0;
}

.navigation .menu li {
    margin-left: 25px;
}

.navigation .menu li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 0;
}

.navigation .menu li a.buttonbtn {
    border: 2px solid #000;
    padding: 8px 16px;
    border-radius: 4px;
}
.navigation .menu li a.buttonbtn:hover{
    background: #000;
    color: #fff;
    border: 2px solid #fff; 
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px 0;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    white-space: nowrap;
}

/* Section Styling */
.section-banner {
    margin: 4rem; /* Adds margin symmetrically around the section and centers it */
  
    padding: 100px 20px; /* Increased padding for ample whitespace */
    display: flex;
    align-items: center; /* Vertically center content within the section */
    justify-content: center;
    border-bottom: 5px solid #333; /* Adding a prominent bottom border */
}


/* Responsive adjustments for tablets */
@media (max-width: 768px) {
    .section-banner {
        padding: 50px 10px; /* Reduced padding for smaller screens */
        margin: 2rem; /* Smaller margin for tighter spaces */
        border-bottom: 3px solid #333; /* Thinner border on smaller devices */
    }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 480px) {
    .section-banner {
        padding: 30px 5px; /* Further reduced padding for mobile screens */
        margin: 1rem; /* Minimal margin to maximize space */
        border-bottom: 2px solid #333; /* Subtle border for minimal distraction */
    }
}


.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.heading h1 {
margin-top: 20px;
    font-size: 8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

.description p {
    font-size: 20px;
    color: #666;
    text-align: right;
    max-width: 400px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .heading h1 {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .heading h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .description p {
        text-align: center;
        max-width: none;
        margin-top: 20px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .navigation.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }

    .navigation .menu {
        flex-direction: column;
        align-items: center;
    }

    .navigation .menu li {
        margin: 10px 0;
    }

    .navigation .menu li a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .heading h1 {
        font-size: 36px;
    }

    .navigation .menu li a {
        font-size: 18px;
    }
}



/*Video Container*/
/* Base styling for the video section *//* General styles for the video section */
.video-section {
    padding: 3rem; /* Adjust padding as needed */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 100%;
    
    overflow: hidden; /* Ensures border-radius clips the content */
    border-radius: 20px; /* Adjust the radius value as desired */
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px; /* Apply rounded corners to the video */
}
@media (max-width: 768px) {
    .video-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 1rem;
    }
}

/*Expertise*//* Expertise Section Styles *//* Expertise Section Styles *//* Expertise Section Styles */
.expertise-section {
    padding: 4rem 1rem;
    font-family: 'Epilogue', sans-serif;
  
}


.expertise-section h3 {
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.expertise-section h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    max-width: 800px;
    font-weight: 500;
}

.expertise-section p {
    font-size: 19px;
    line-height: 29px;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.services {
    max-width: 1000px;
}

.service {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.service-header {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h4 {
      max-width: 30rem;
    font-family: Epilogue;
    font-size: 28px;
    line-height: 33px;
    font-weight: 500;
    margin: 0;
    color: #333;
    padding-right: 1rem;
}

.accordion {
    color: #333;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.panel {
    padding: 0 0;
 
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}


.panel p {
        max-width: 60rem;
    padding: 1rem 0;
    color: #555;
    margin: 0;
    /* Ensure left alignment */
    text-align: left;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-header {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .expertise-section h2 {
        font-size: 1.5rem;
    }

    .service-header h4 {
        font-size: 1.1rem;
    }

    .accordion {
        font-size: 0.7rem;
    }
}

/*CTA*//* Career Section Styles *//* Career Section Styles */
/*Client Logos*/

.client-logos-section {
    /* Optional styles for the background */
   
}
#ourclients .clients-wrap ul {
    margin: 0;
    padding: 0;
}

#ourclients {
    display: block;
    margin: 0 auto;
    padding-bottom: 30px;
    height: 150px;
}

#ourclients .clients-wrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#ourclients .clients-wrap ul {
    display: block;
    list-style: none;
    position: relative;
    margin: 0 auto;
    padding: 0;
}

#ourclients .clients-wrap ul li {
    display: block;
    float: left;
    position: relative;
    width: 220px; /* Adjusted to match JavaScript */
    height: 100px;
    line-height: 100px;
    text-align: center;
}

#ourclients .clients-wrap ul li img {
    vertical-align: middle;
    max-width: 100%;
    width: 150px;
    max-height: 100%;
    filter: grayscale(100%); /* Make the logos black and white */
    transition: filter 0.3s ease; /* Smooth transition for hover effect */
}

#ourclients .clients-wrap ul li img:hover {
    filter: grayscale(0%); /* Restore color on hover */
}

/*Client Logos*/


/* Career Section Styles */
.career-section {
    padding: 4rem;
    
}

.containercta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    width: 45%; /* Reduced width to create space between elements */
    text-align: left; /* Left-align the text */
}

.text-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
}

.text-content h2 {
  
    margin-bottom: 1rem;
    font-size: 45px;
    line-height: 55px;
    font-weight: 500
}

.text-content p {
   
    margin-bottom: 2rem;
}

.learn-more-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none !important;
    border-radius: 20px;
}
.learn-more-btn:hover{
    background-color: #fff;
    color:#000;
    border: 1px solid #333;
    
}
.image-content2 {
    width: 45%; /* Reduced width to create space */
    overflow: hidden;
    border-radius: 50px;
    margin-left: 5%; /* Added margin to create gap */
}

.image-content2 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.image-content2 img:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .containercta {
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .image-content2 {
        width: 100%;
        margin: 0; /* Reset margins */
    }

    .image-content2 {
        margin-top: 20px;
    }

    .text-content {
        text-align: left; /* Keep text left-aligned on mobile */
    }
}

/*Footer*/
.site-footer {
    background-color: #232321; /* Dark background color */
    color: #ccc; /* Light text color for contrast */
    padding: 20px 0;
    
}

.containerfooter {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Space out the footer items */
    align-items: center;
    padding: 0 15px;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-around; /* Evenly distribute space around items */
    align-items: center;
    flex-wrap: wrap; /* Ensure responsiveness */
}

.footer-block {
    margin: 5px 10px; /* Margin around each block for spacing */
    flex: 1 1 200px; /* Flexibility and basis size for each block */
    text-align: center; /* Center text within blocks */
}

.footer-block.logo img {
    max-width: 100%;
    height: auto; /* Keep logo aspect ratio intact */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack the footer content vertically on small screens */
    }
    
    .footer-block {
        margin: 10px 0; /* Increase vertical margin for stacked blocks */
    }
}



