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

body {
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    font-size: 16px;   
    overflow-x: hidden;
    cursor: none;
}
/* Headings */
h1 {
    font-family: 'Bebas Neue', Arial, sans-serif; 
    line-height: 1.2;
    font-weight: bold;
    font-size: 46px; 
    margin: 10px 0px; 
    text-transform: uppercase;
}

h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem; /* Size ratio: 2x base size */
    line-height: 1.3; 
}

h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.75rem; /* Size ratio: 1.75x base size */
    line-height: 1.4; 
}

h4 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.5rem; /* Size ratio: 1.5x base size */
    line-height: 1.5; 
}

/* Paragraphs */
p {
    font-size: 1rem; /* Base size */
    line-height: 1.6; /* Matches the body line height */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Other Text Elements */
small {
    font-size: 0.875rem; /* Slightly smaller for fine print */
}

blockquote{
    font-family: 'Bebas Neue', Arial, sans-serif;
}
.dark{
    color: #000;
}
.dark:hover{
    color: #000;
}
.light{
    color: #fff;
}
.light:hover{
    color: #fff;
}
/* Toggle Switch Container */
.toggle-switch {
    position: relative;
    width: 60px; 
    height: 25px; 
    right: 30%;
    background-color: #333333; 
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch input {
    display: none; 
}

.toggle-switch input:checked + .slider {
    background-color: #f0f0f0; 
}

.slider {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff; 
    transition: transform 0.3s, background-color 0.3s;
}

.toggle-switch input:checked + .slider {
    transform: translateX(28px); 
    background-color: #000; 
}


/* Dark mode styles */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}
body.dark-mode h1, body.dark-mode h1 p{
    color: white;
}
body.dark-mode #white{
    background-color: #000;
}
body.dark-mode .about-1, body.dark-mode .about-1 h1{
    color: #333;
}
/* Dark mode for navbar, footer, and other sections */
body.dark-mode nav, body.dark-mode .footer, body.dark-mode .footer-copy {
    background-color: #1e1e1e;
    color: #ffffff;
}
body.dark-mode .left-side{
    background-color: #000;
    color: white;
}
body.dark-mode .footer a{
    color: #fff;
}
body.dark-mode .footer p{
    color: white;
}
body.dark-mode .footer-copy p, body.dark-mode .footer-copy a{
    color: white;
}
/* Button styles for dark mode */

body.dark-mode .logo-left-side-light {
    display: block;
}
body.dark-mode .logo-left-side-dark {
    display: none;
}
/* Assuming .dark-mode is the class applied in dark mode */
body.dark-mode .svg-container-service-1 .timeline-1 g {
    stroke: hsl(0, 0%, 100%); /* White stroke for dark mode */
}
body.dark-mode .faq{
    background-color: #000;
}
body.dark-mode .faq p{
    color: #f0f0f0;
}
body.dark-mode .index-1 .custom-button{
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}

body.dark-mode .index-3 .custom-button{
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}
body.dark-mode .services-1 .custom-button{
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    transition: transform 0.1s ease-out, background-color 0.2s ease, border-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.6); 
    border: 2px solid #fffdfd; 
}

.cursor.dark {
    background-color: rgba(0, 0, 0, 0.6); 
    border-color: #000; 
}

.cursor.light {
    background-color: rgba(255, 255, 255, 0.6); 
    border-color: #fffdfd; 
}

.cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px; 
    height: 6px;
    background-color: currentColor; 
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    background-color: rgba(231, 14, 14, 0.1); /* Hover effect */
    transform: translate(-50%, -50%) scale(1.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #060505;
    top: 0;
    width: 100%;
    z-index: 100; 
    transition: background-color 0.5s ease;
}

.sticky {
    background-color: transparent;
    position: fixed; 
}

.hidden {
    display: none;
}

/* Logo */
.logo-light, .logo-dark {
    width: 150px;
    height: auto;
}

/* Get a Proposal Section */
.proposal-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1000px;
}

.proposal-link a {
    text-decoration: none;
    font-size: 16px;
    color: #fbf9f9;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 20px;
    border: solid 3px;
    padding: 10px 20px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 3px;
}
.proposal-link a:hover{
    background-color: #fd1111;
    text-decoration: none;
}
.proposal-link a.light {
    color: #fff; /* Light color for the proposal link */
}

.proposal-link a.dark {
    color: #000; /* Dark color for the proposal link */
}

/* Hamburger Menu */
.hamburger-menu {
    cursor: pointer;
}

.circle {
    width: 50px;
    height: 50px;
    color: white;
    background-color: #fd1111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle i {
    color: white;
    font-size: 24px;
}

/* Hidden Nav Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    transition: right 0.5s ease; 
    z-index: 20;
}
.nav-menu.show {
    right: 0; 
}

/* Left Side Content */
.left-side {
    background-color: #fff;
    width: 70%;
    color: black;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-side h2 {
    font-size: 28px;
    margin-bottom: 20px;  
    margin-top: 10px;  
    width: 80%;
}

.left-side p {
    margin-bottom: 20px;
    font-size: 20px;
}
.left-side i{
    margin-right: 25px;
    color: #fd1111;
}
.logo-left-side{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin-top: -80px;
    margin-bottom: 30px;
}
/* Right Side Content */
.right-side {
    background-color: #fd1111;
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Menu Header (with close button) */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header p {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
    top: 20px;
    padding-top: 7px;
}

.close-btn {
    cursor: pointer;
}

.close-btn i {
    font-size: 24px;
    color: white;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding-top: 40px;
    padding-bottom: 40px;
}

.menu-list li {
    margin-bottom: 20px;
}
.menu-list li span{
    font-size: 25px;
    color: #000;
}
.menu-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 38px;
    letter-spacing: 2px;
    vertical-align: middle; 
    transition: 0.5s ease;
}
.menu-list li a:hover {
    color: #000;
}

.menu-list li {
    opacity: 0; 
    transform: translateY(20px);  
    transition: opacity 0.5s ease, transform 0.5s ease;  
}

.nav-menu.show .menu-list li {
    opacity: 1; 
    transform: translateY(0);  
}

/* Footer section */
.menu-footer {
    text-align: center;
    font-size: 12px;
    color: white;
}
/* Responsive Styles */
@media (min-width: 768px) {
    /* Tablet and larger screens */
    .navbar-container {
        padding: 20px 40px;
    }

    .proposal-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto; /* Align proposal link to the right */
    }

    .proposal-link a {
        font-size: 14px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* Mobile screens */
    .navbar-container {
        padding: 10px 15px;
    }

    .proposal-link {
        display: none;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .circle i {
        font-size: 20px;
    }
    .left-side{
        display: none;
    }
    .right-side{
        width: 100%;
        height: 100vh;
    }
    .menu-list li a {
        font-size: 24px;
    }

    .menu-list li span {
        font-size: 18px;
    }

    .left-side h2 {
        font-size: 22px;
    }

    .left-side p {
        font-size: 16px;
    }

    .logo-left-side {
        width: 80%;
    }
}

@media (min-width: 1024px) {
    /* Larger screens */
    .navbar-container {
        padding: 20px 20px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .logo-light, .logo-dark {
        width: 150px;
    }

    .proposal-link {
        margin-left: 950px; /* Adjusted for large screens */
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle i {
        font-size: 24px;
    }
}
@media (max-width: 1280px) {
    .navbar-container {
        padding: 20px 20px; /* Reduce padding */
    }

    .logo-light, .logo-dark {
        width: 120px; /* Slightly smaller logos */
    }

    .proposal-link {
        display: none; /* Hide the proposal link on smaller screens */
    }

    .hamburger-menu {
        margin-left: auto;
    }

    .left-side, .right-side {
        width: 100%; /* Make both sides full width */
    }

    .right-side {
        padding: 30px;
    }

    .menu-list li a {
        font-size: 28px; /* Smaller font size for menu links */
    }

    .menu-list li span {
        font-size: 20px; /* Smaller font size for numbers */
    }
}

/* For even smaller screens (768px and smaller) */
@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 15px; /* Further reduce padding */
    }

    .logo-light, .logo-dark {
        width: 100px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .circle i {
        font-size: 20px;
    }

    .left-side h2 {
        font-size: 22px;
    }

    .right-side {
        padding: 20px;
    }

    .menu-list li a {
        font-size: 22px;
    }
}

/* Banner Section */
.banner-index {
    background-color: #060505; 
    color: white; 
    display: flex;
    align-items: center;
    height: 95vh; 
    position: relative;
    overflow: hidden; 
    background-image: url('images\banner-bg.png');
    background-size: cover;
}

/* Content */
.banner-index .banner-index-content {
    text-align: left; 
    width: 60%;
    margin-left: 90px;
}
.banner-index .banner-index-content  blockquote{
    color: #fd1111;
}
.banner-index .banner-index-content  h1 {
    font-family: 'Bebas Neue'; 
    text-transform: uppercase;
    font-size: 66px; 
    font-weight: bold;
    margin: 10px 0px; 
    letter-spacing: 3px; 
}
@media (max-width:768px) {
    .banner-index .banner-index-content {
        margin-left: 0px;
    }
    .banner-index .banner-index-content  h1 {
        font-size: 56px;
    }
}
/* Container for circle and arrow */
.circle-arrow-container {
    position: relative;
    text-align: center;
    width: 200px;
    top: 70%;
    left: 10%;
}

.circle-arrow-link {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: inherit;
    text-decoration: none;
    width: 50px; 
    height: 50px;
    z-index: 10; 
}

.circle-arrow-icon {
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
}

.circle-arrow-link:hover .circle-arrow-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.circle-background {
    fill: red; /* Inner circle color */
}

.custom-button {
    font-family: 'Bebas Neue', cursive;
    position: relative;
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    padding: 30px 20px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    z-index: 6;
}

/* Dark Mode */
.custom-button-dark {
    color: #000;
}
.custom-button-dark:hover {
    color: #fff; /* Slightly darker hover effect */
}

/* Light Mode */
.custom-button-light {
    color: #fff;
}
.custom-button-light:hover {
    color: #000; /* Slightly lighter hover effect */
}

/* The Dot */
.custom-button .dot {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fd1111;
    border-radius: 50%;
    z-index: -1;
    transition: left 0.4s ease-in-out;
}

/* Hover effect */
.custom-button:hover .dot {
    left: calc(100% - 40px);
}

/* Section styles for testing purposes */
section {
    height: 100vh; 
    padding: 20px;
}

/* Different section colors */
#white {
    background-color: #fffdfd;
}

#red {
    background-color: #fd1111;
}

#black {
    background-color: #000;
}

/* Index-1 */
.index-1{
    padding-top: 80px;
}
.index-1 .text{
   margin-top: 70px;
}
.index-1 h1{
    font-weight: bold;
    font-size: 46px; 
    margin: 10px 0px; 
}
.index-1 p{
    margin:20px 0 10px 0;
}
.svg-container-index-1 {
    position: relative; 
    padding: 30px;
    width: 700px; 
}

.background-svg-index-1 {
    margin-top: 100px;
    width: 70%; 
}

.image-svg-index-1 {
    position: absolute; 
    top: 0;
    left: 0;
    width: 80%; 
    object-fit: cover; 
    opacity: 0.5;
}
@media (max-width:768px) {
    .index-1{
        flex-direction: column;
        padding-top: 20px;
    }
    .svg-container-index-1 {
        display: none;
    }
}
/* Index-2 */
.index-2 {
    width: 100vw; 
    height: 100vh; 
    padding: 60px 0px 10px 0px;
    margin: 0;
    overflow: hidden; 
    position: relative; 
}
.index-2 .owl-carousel{
    transform: rotate(-1deg); 

}
.index-2 .owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 100%;
}

.index-2 .owl-carousel .item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; /
}

/* Style the navigation buttons */
.index-2 .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.index-2 .owl-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
/* Remove owl dots */
.index-2 .owl-dots {
    display: none; /* This will hide the dots */
}
/* Index-3 */
.index-3{
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 60px;
}

.index-3 .text{
    padding: 50px;
}
.index-3 .text h1{
    font-weight: bold;
    font-size: 46px; 
}
.sections-index-3 .section-item-index-3{
    margin: 30px;
}
.sections-index-3 .section-item-index-3 i {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 1; 
    border-radius: 50%; 
    padding: 25px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    border: 2px solid #000; 
    color: #fd1111;
    box-sizing: border-box; 
    margin-bottom: 15px;
}
/* For screens 1280px and smaller */
@media (max-width: 1280px) {
    .index-3 {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 60px;
    }
    .index-3 .text {
        padding: 30px;
    }
    .sections-index-3 .section-item-index-3 {
        margin: 20px;
    }
}

/* For screens 768px and smaller */
@media (max-width: 768px) {
    .index-3 {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 1300px;
    }
    .index-3 .text {
        padding: 20px;
    }
    .sections-index-3 .section-item-index-3 {
        margin: 15px;
    }

    /* Center the text on smaller screens */
    .index-3 .text h1, .index-3 .text p, .index-3 .text h4 {
        text-align: left;
    }

    /* Stack the icon text vertically */
    .sections-index-3 .section-item-index-3 {
        text-align: left;
    }

    .sections-index-3 .section-item-index-3 i {
        margin-left: auto;
        margin-right: auto;
    }
    .sections-index-3 .section-item-index-3 i {
        margin-left: 0px;
    }
}

/* For screens 480px and smaller */
@media (max-width: 480px) {
    .index-3 .text h1 {
        font-size: 24px;
    }

    .index-3 .text p, .index-3 .text h4 {
        font-size: 14px;
    }

    .sections-index-3 .section-item-index-3 i {
        width: 25px;
        height: 25px;
        font-size: 14px;
        padding: 15px;
    }
}
/* Index-4 */
.index-4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
}
.index-4 h2{
    font-family: 'Bebas Neue', Arial, sans-serif; 
    line-height: 1.2;
    font-weight: 100;
    font-size: 46px; 
    text-align: left;
    padding: 50px;
    text-transform: uppercase;
}
.team-grid {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    grid-template-rows: repeat(2, 300px); 
    gap: 0px; 
    padding: 0px;
    margin: 0;
}

.item {
    position: relative;
    overflow: hidden;
    background-color: #fff; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)); 
    color: white;
    padding: 10px;
    text-align: center;
}

/* Grid Item Positions */
.item-a {
    grid-column: 1;  
    grid-row: 1;
    background-color: #000;
    color: #fff;
}

.item-b {
    grid-column: 2; /* Second column */
    grid-row: 1/4; /* First row */
}

.item-c {
    grid-column: 3; /* Third column */
    grid-row: 1; /* First row */
    background-color: #fd1111; 
}

.item-d {
    grid-column: 1; /* Second column */
    grid-row: 2/4; /* Second row */
}

.item-e {
    grid-column: 3; /* Third column */
    grid-row: 2/4; /* Second row */
}
@media (max-width: 1280px) {
    .team-grid {
        grid-template-columns: 1fr 1fr; /* Two columns */
        grid-template-rows: auto; /* Allow rows to adjust automatically */
        height: auto; /* Allow height to adjust automatically */
    }

    .item-a, .item-c {
        grid-column: span 2; /* Make these items span across two columns */
    }

    .item-b {
        grid-row: span 2; /* Make this item span two rows */
    }

    .item-d, .item-e {
        grid-column: span 1; /* Keep these items as single columns */
    }

    .index-4 h2 {
        font-size: 36px; /* Adjust font size for smaller screens */
        padding: 20px; /* Adjust padding */
    }
}

/* For screens 768px and smaller */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
    }

    .item-a, .item-c {
        grid-column: span 1; /* Each item takes full width */
    }
    .item-e{
        grid-column: span 2;
    }
    .item-b {
        grid-row: span 2; /* Each item takes full width */
    }

    .index-4 h2 {
        font-size: 18px; /* Further adjust font size */
        padding: 50px; /* Adjust padding */
    }
}

/* For screens 480px and smaller */
@media (max-width: 480px) {
    .index-4 h2 {
        font-size: 24px; /* Smaller font size */
        padding: 5px; /* Less padding */
    }

    .item {
        font-size: 20px; /* Adjust font size for items */
    }
}
/* Index-5 */
.index-5{
    padding-top:100px ;
    margin-bottom: 0px;
    background-color: #fd1111;
}
.quote-box {
    color: white;
    padding: 40px;
    position: relative;
    border-radius: 10px;
    text-align: left;
}

.quote-icon {
    font-size: 40px;
    color: white;
}

.left-quote {
    position: absolute;
    top: 30px;
    left: 0px;
}

.right-quote {
    position: absolute;
    bottom: 70px;
    right: 260px;
}

.quote-text {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
}

.author {
    margin-top: 20px;
    float: inline-end;
}

.author p {
    font-size: 26px;
    margin: 0;
}
.circle-index-5 {
    width: 530px;
    height: 530px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 240px 0px 0px 0px; 
    overflow: hidden;
    transition: 0.5s ease;
}
.circle-index-5:hover{
    background-color: #fd1111;
}
.circle-index-5 a:hover{
    color: #fff;
    text-decoration: none;
}
.circle-text {
    color: #fff;
    font-size: 2rem; 
    text-align: center;
    font-weight: 700;
    text-transform: uppercase; 
    position: relative;
    display: inline-block; 
    margin: 20px 0;
    padding-bottom: 10px; 
}

.circle-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; 
    background-color: #fd1111;
    transform: scaleX(0.5); 
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.circle-text:hover::after {
    color: #fff;
    background-color: #000;
    transform: scaleX(1); 
    transform-origin: left; 
}

.circle-text .icon {
    font-size: 1.2rem; 
    margin-left: 10px; 
    vertical-align: middle; 
    transition: transform 0.3s ease-in-out;
}

.circle-text:hover .icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .index-5{
        padding-top: 20px;
    }
    .quote-icon {
        font-size: 20px;
    }
    .quote-text {
        font-size: 26px;
    }
    .right-quote {
        bottom: 60px;
        left: 170px;
    }
    .circle-index-5 {
        width: 380px;
        height: 380px;
        margin: 40px 0px 0px -27px; 
    }
}
/* footer */
.footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    color: #333;
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.1); 
}

.footer-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-left {
    max-width: 40%;
}

.footer-left .logo img {
    width: 150px;
}

.footer-left p {
    margin: 10px 0;
}

.social-icons {
    margin: 20px 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.social-icons .icon {
    margin-right: 10px;
    color: #333;
    text-decoration: none;
    font-size: 25px;
    transition: 0.5s ease;
}

.social-icons .icon:hover {
    transform: translateY(-10px);
    color: #ff3d00; 
}

.footer-right {
    text-align: left;
}

.footer-right .footer-links {
    display: flex; 
    justify-content: flex-start;
    margin-top: 83px;
    margin-bottom: 20px;
    margin-left: 100px; 
}

.footer-right .footer-links a {
    display: inline-block; 
    margin: 0 40px;
    background-color: black;
    font-size: 12px;
    color: #fff;
    border-radius: 20px;
    padding: 7px 10px;
    text-decoration: none;
    transition: 0.5s ease;
    position: relative;
}

.footer-right .footer-links a:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -35px; 
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000; 
}

.footer-right .footer-links a:hover {
    opacity: 1;
    background-color: #ff3d00; 
    text-decoration: none;}

.footer-inquiries {
    text-align: center;
    margin-top: 20px;
}

.inquiry-form {
    display: inline-flex;
    border: 2px solid #fd1111;
    border-radius: 20px;
    overflow: hidden;
}

.inquiry-form input {
    border: none;
    padding: 7px 10px;
    outline: none;
    font-size: 12px;
    flex: 1;
}

.animated-btn {
    background: #fd1111;
    color: #fff;
    padding: 7px 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Animation: Slide in highlight */
.animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
}

.animated-btn:hover::before {
    animation: slide 0.5s forwards;
}

@keyframes slide {
    to {
        left: 100%;
    }
}



.footer p a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.5s ease;
}

.footer p a:hover {
    text-decoration: underline;
    opacity: 0.75;
}

.icon:hover {
    color: #ff3d00; /* Change hover color as per theme */
}
@media (max-width:768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .footer-right .footer-links {
        margin-top: 20px;
    }
    .footer-right .footer-links {
        margin: -10px;
    }
    .social-icons {
        justify-content: center;
        align-items: center;
    }
    .footer-right .footer-links a:not(:first-child)::before {
        left: -20px;
    }
    .footer-right .footer-links a {
        justify-content: center;
        margin: 15px;
    }
    .footer-right .footer-inquiries p {
        margin-left: 0px;
        margin-top: 10px;
    }
}
/* Footer Copy Section */
.footer-copy {
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 10px;
    color: #333;
    position: relative;
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}
.footer-copy p {
    margin: 5px 5px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 300;
    color: #333;
}

.footer-copy .start {
    text-align: left; /* Left-align the start paragraph */
    font-weight: 400;
}

.footer-copy .end {
    text-align: right; 
    font-weight: 400;
}
.footer-copy a {
    color: #333;
    text-decoration: none;
    transition: 0.5s ease;
}

.footer-copy a:hover {
    color: #ff3d00; 
    text-decoration: none;

}

/* services-1 */
.services-1 {
    padding-top: 80px;
    position: relative; 
    background-color: #fff;
}
body.dark-mode .services-1{
    background-color: #000;
}
.services-1 .text {
    margin-top: 70px;
}

.services-1 h1 {
    font-weight: bold;
    font-size: 46px; 
    margin: 10px 0px; 
}

.services-1 p {
    margin: 20px 0 10px 0;
}

.img-container-services-1 {
    padding-top: 70px;
    padding: 50px;
    position: relative; 
    z-index: 100; /
}

.img-container-services-1 img {
    z-index: 100; 
    position: relative;
}
body.dark-mode .image-services-1-light {
    display: block;
}
body.dark-mode .image-services-1-dark {
    display: none;
}

/* services-item */
.services-item-content blockquote {
    color: #fd1111;
}

.services-item-1 .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-item-icon img {
    max-width: 100%;
    height: auto;
    z-index: 100; 
    position: relative;
}

/* SVG container */
.svg-container-service-1 {
    position: absolute; 
    width: 100%;
    height: auto; 
    z-index: 0;
    margin: 0; 
    padding: 0;
    left: 0;
}

.svg-container-service-1.line-1 {
    top: 70%;
    transform: rotate(90deg);
}

.svg-container-service-1.line-2 {
    top: 170%; 
}
.svg-container-service-1.line-3 {
    top: 270%; 
    transform: rotate(90deg);
}
.svg-container-service-1.line-4 {
    top: 370%; 
}
.svg-container-service-1.line-5 {
    top: 470%; 
    transform: rotate(90deg);
}
/* Image containers */
.services-1 .img-container-services-1,
.services-item-1 .services-item-icon {
    margin-bottom: 0;
    padding: 0;
    position: relative; /* Ensure images stay on top */
    z-index: 2; /* Ensure images are above the SVG */
}

/* Remove bottom padding from the service sections */
.services-1,
.services-item-1 {
    padding-bottom: 0;
}

/* SVG Path styling */
.timeline-1 {
    width: 100%;
    height: 100%;
    margin: 0;
}
.image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
    background-color: red; /* Background color */
    border-radius: 50%; /* Make it circular */
    transform: translate(-50%, -50%); /* Center the circle */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Animation for scaling */
    opacity: 0; /* Initially hidden */
    z-index: -1; /* Position behind the image */
}

.service-image {
    transition: transform 0.5s ease, opacity 0.5s ease; /* Transition for image */
    opacity: 0.5; /* Default state */
}

.service-image.active {
    transform: scale(1.1); /* Scale the image */
    opacity: 1; /* Full opacity */
}

.image-background.active {
    transform: translate(-50%, -50%) scale(1.5); /* Scale up background on active */
    opacity: 1; /* Make it visible */
}
@media (max-width: 1300px) {
    .services-1 {
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .services-1 h1 {
        font-size: 60px;
        margin: 30px 0;
    }

    .services-1 p {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }
    .svg-container-service-1{
        display: none;
    }
    .img-container-services-1 {
        padding-top: 110px;
        padding: 80px;
    }

    .services-item-content blockquote {
        font-size: 24px;
    }

    .services-item-1 .col-lg-6 {
        padding: 40px;
    }

    .image-background {
        width: 250px;
        height: 250px;
    }
}

.spacer {
    height: 0; /* Default height */
}
    /* Responsive styling for max-width 450px */
    @media (max-width: 450px) {
        .cursor{
            display: none;
        }
        .reverse-service .row {
          flex-direction: column-reverse;
        }
        .reverse-service .img-container-services-1 {
          order: -1;
        }
        .services-1 .img-container-services-1 {
            display: none;
        }
        .services-item-1{
            height: auto;
        }
        .services-item-1 .services-item-icon {
            position: relative;
            padding: 20px;
        }
        .spacer {
            height: 300px; /* Add height to create space on smaller screens */
        }
        .service-2 .circle-index-5{
            margin-top: -50px;
        }
      }
/* service-2 */
.service-2{
    margin-top: -300px;
    padding-top: 100px;
    background-color: #000;
}
/* service-3 */

/* about-1 */
.about-1 {
    padding-top: 80px;
}

.about-1 .text {
    margin-top: 70px;
    background-color: #f9f9f9;
    padding: 20px 40px 20px 40px;
}

.about-1 h1 {
    font-weight: bold;
    font-size: 46px; 
    margin: 10px 0px; 
}

.about-1 p {
    margin: 20px 0 10px 0;
}

.video {
    position: relative;
    padding: 30px;
    width: 700px; 
    margin-top: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
}

.video-container img {
    width: 100%;
    height: auto;
}

.video-container video {
    position: absolute;
    top: 10%; 
    left: 13%; 
    width: 74%; 
    height: auto; 
    pointer-events: none;
}

/* About-us */
.about-us{
    padding-top: 80px;
}
.about-us .text{
   margin-top: 100px;
}
.about-us h1, .about-us-timeline-section h1{
    font-weight: bold;
    font-size: 46px; 
    margin: 10px 0px; 
}
.about-us p, .about-us-timeline-section p{
    margin:20px 0 10px 0;
    width: 80%;
}
.img-container-about-us {
    position: relative; 
    width: 50%;
}

.background-svg-about-us {
    margin-top: 100px;
    width: 70%; 
}

.image-about-us {
    position: absolute; 
    top: 0;
    left: 0px;
}
@media (max-width:768px) {
    .index-1{
        flex-direction: column;
        padding-top: 20px;
    }
    .svg-container-index-1 {
        display: none;
    }
}

/* About Timeline */
.about-us-timeline-section{
    padding: 50px 30px;
    height: auto;
}
#about-us-timeline {
  padding: 10px 40px;
  overflow-x: auto;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 40px;
  padding: 40px 0;
  border-top: 4px solid #ccc;
}

.timeline-step {
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 180px;
}

.timeline-step .circle {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 4px solid #fd1111;
  border-radius: 50%;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: 25px;
  left: -60%;
  width: 100%;
  height: 4px;
  background: #fd1111;
  z-index: 0;
}

.timeline-step:nth-child(1)::before,
.timeline-step:nth-child(2)::before {
  content: none;
}

.timeline-step .content {
  margin-top: 20px;
}
.timeline-step .content {
  margin-top: 20px;
}
.timeline-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.timeline-step p {
    margin-left: 30px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.tracker-dot {
  position: absolute;
  width: 50px;
  height: 49px;
  background: #fd1111;
  border: 2px solid #fd1111;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.4s ease, top 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
    border: none;
  }

  .timeline-step {
    text-align: left;
    width: 100%;
    margin-bottom: 0px;
  }

  .timeline-step::before {
    left: -15px;
    top: 20px;
    width: 4px;
    height: 210px;
  }
  .timeline-step p {
    margin-left: 0px; 
  }
  .timeline-step .circle {
    margin-left: -35px;
  }
.timeline-step:nth-child(6)::before {
  content: none;
}
.timeline-step:nth-child(2)::before {
  content: '';
  position: absolute;
    left: -15px;
    top: 20px;
    width: 4px;
    height: 210px;
  background: #fd1111;
  z-index: 0;
 }
/* about-1 */
.about-1 .row {
    flex-direction: column;
    height: auto;
}
.about-1 .video {
    display:none;
}
.contact-1 {

    height: 95vh;
}
}

.split-container {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.box-section {
  flex: 1 1 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.red-box {
  width: 100%;
  height: 100%;
  background-color: #fd1111;
}

.text-section {
  flex: 1 1 66%;
  padding: 10px 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .box-section,
  .text-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .red-box {
    margin: 0 auto;
  }
}

/* About Footer */
.about-footer{
    background-color: #000;
    height: auto;
}
.about-footer .content{
    padding: 100px;
    color: white;
    text-align: center;
}
.about-footer h2{
    font-family: 'Bebas Neue', Arial, sans-serif; 
    line-height: 1.2;
    font-weight: bold;
    font-size: 46px; 
    text-transform: uppercase;
}
/* contact-1 */
.contact-1 {
    padding: 40px;
    background-color: #000;
    height: 75vh;
}

.contact-1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
    margin-top: 0px;
}

.contact-1-content img {
    width: 50%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.contact-1 .contact-1-content h1 {
    font-weight: bold;
    font-size: 36px; 
    margin: 0px 0px; 
    color: #ddd;
}

.contact-1 .contact-1-content p {
    font-size: 1em;
    color: #666;
    margin: 0;
    width: 90%;
}

.contact-1 .form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-1 .form-container label{
    color: #f0f0f0;
}
.contact-1 .form-container input,
.contact-1 .form-container textarea {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.contact-1 .form-container input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-1 .form-container input[type="submit"]:hover {
    background-color: #fd1111;
}

.contact-1 .form-row {
    display: flex;
    gap: 15px;
}

.contact-1 .form-row .form-group {
    flex: 1;
}
.form-message { margin-bottom: 1em; font-weight: bold; }
.form-success { color: green; }
.form-error { color: red; }
/* faq */
.faq{
    background-color: #fff;
    padding: 100px 50px;
    height: auto;
}
.faq-content img{
    width: 150%;
    height: auto;
    margin-top: -80px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.faq-content h2{
    margin-bottom: 30px;
}
.faq p{
    color: #333;
}
.faq h1{
    font-weight: bold;
    font-size: 36px; 
    margin-bottom: 20px;
}
.faq-link a{
    text-decoration: none;
    font-size: 16px;
    color: #fbf9f9;
    background-color: #fd1111;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 20px;
    border: solid 3px;
    padding: 10px 20px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 3px;
}
.faq-link a:hover{
    color: #000;
    text-decoration: none;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
    border: 1px solid #e5f3fa;
    border-radius: 10px;
    overflow: hidden;
}

.accordion__header {
padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__header.active {
    background: #e5f3fa;
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.accordion__item.active .accordion__content {
    max-height: 1000px; /* Arbitrary high value to allow for smooth expansion */
    padding-top: 15px; /* Optional: add padding for a nice effect */
    padding-bottom: 15px;
}

