/* orange #f15a24 */
/* blue #2a3d8f */
:root {
    --primary-orange: #f15a24;
    --primary-blue: #2a3d8f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Single navbar containing everything */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 70px;
    transition: all 0.3s ease;
}

/* Logo styles */
.logo-container {
    transition: all 0.5s ease;
    padding: 0 15px;
    position: relative;
}

.logo {
        height: 130px;
        transition: all 0.5s ease;
        margin-left: 150px;
        margin-top: 30px;
}

/* Initial position of logo (before scroll) */
.logo-initial {
    position: absolute;
    top: 0;
    left: 14%;
    transform: translateX(-50%);
    z-index: 1001;
    background-color: white;
    padding: 10px 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-initial img {
    height: 100px;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    flex: 1;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2a3d8f;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    height: auto;
}

.nav-item:hover .dropdown-content {
    display: block;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 0.8em;
}

/* Contact info */
.contact-info {
    background-color: #d2b48c;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5px 20px;
    height: 70px;
    justify-content: center;
    margin-right: 0;
}

.contact-group {
    flex-direction: column;
    align-items: flex-end;
    margin: 1px 0;
}

.contact-info .location {
    font-weight: 600;
    font-size: 12px;
}

.contact-info .phone {
    font-size: 14px;
    font-weight: 400;
}


/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
    color: #333;
}

/* Mobile dropdown toggle icons */
.mobile-dropdown-toggle {
    display: none;
    margin-left: 10px;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .nav-links a {
        padding: 0 15px;
    }
}



@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    
    .logo-container {
        position: relative;
        order: 1;
        margin-left: 15px;
    }
    
    .logo {
        height: 114px;
        margin-left: 0;
    }
    
    .logo-initial {
        display: none; /* Hide initial logo in mobile */
    }
    
    .contact-info {
        order: 2;
        padding: 5px 10px;
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        max-height: 0;
        transition: max-height 0.5s ease-out;
        overflow: hidden;
        align-items: flex-start;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        order: 4;
        padding: 0 20px; /* Added left padding */
    }
    
    .nav-links.active {
        max-height: 100vh;
        overflow-y: auto;
        padding: 0 20px 20px; /* Added padding */
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a {
        padding: 15px 0;
        width: 100%;
        height: auto;
        justify-content: space-between;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        margin-left: 20px; /* Added left margin */
    }
    
    .dropdown-content.show {
        display: block;
    }
    
    .mobile-dropdown-toggle {
        display: inline-block;
    }
    
    .contact-info .location,
    .contact-info .phone {
        font-size: 11px;
    }

}

@media (max-width: 480px) {
    
    
    .logo-container {
        margin-left: 5px;
    }
    
    .contact-info {
        padding: 5px;
    }
}

/* hero */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(42, 61, 143, 0.85) 0%, rgba(241, 90, 36, 0.6) 100%); */
    background: linear-gradient(135deg, rgba(42, 61, 143, 0.85) 0%, rgb(243 89 34 / 20%) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 0 15%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.slide-subheading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.7s;
    border: 2px solid var(--primary-orange);
}

.slide-btn:hover {
    background-color: transparent;
    color: white;
}

.slide-btn.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.slide-btn.secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

.slide.active .slide-heading,
.slide.active .slide-subheading,
.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-orange);
    transform: scale(1.5);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-orange);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 992px) {
    .slide-heading {
        font-size: 2.5rem;
    }
    
    .slide-subheading {
        font-size: 1.2rem;
    }
    
    .slide-content {
        padding: 0 10%;
    }
}

@media (max-width: 768px) {
    .slide-heading {
        font-size: 2rem;
    }

    .slider-arrows {
        display: none;
    }
    
    .slide-subheading {
        font-size: 1rem;
    }
    
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slide-content {
        padding: 0 5%;
        text-align: center;
    }
}






/* services */
/* Prefixed styles to avoid conflicts with existing styles */
.fot-services-container {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 100px 0;
    background-color: #f9f9f9;
}

.fot-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.fot-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.fot-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a3d8f;
    margin-bottom: 15px;
}

.fot-section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.fot-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 70px;
    height: 4px;
    background-color: #f15a24;
    transform: translateX(-50%);
}

.fot-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fot-service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.fot-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fot-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #2a3d8f 0%, #f15a24 100%);
    opacity: 0.9;
    transition: all 0.5s ease;
    z-index: -1;
}

.fot-service-card:hover::before {
    height: 100%;
}

.fot-service-icon {
    width: 80px;
    height: 80px;
    background-color: #f15a24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    margin-top: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.3);
}

.fot-service-card:hover .fot-service-icon {
    background-color: white;
}

.fot-icon {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.fot-service-card:hover .fot-icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(94%) saturate(1752%) hue-rotate(346deg) brightness(98%) contrast(95%);
}

/* Custom icons using CSS backgrounds */
.building-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M436 480h-20V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v456H12c-6.627 0-12 5.373-12 12v20h448v-20c0-6.627-5.373-12-12-12zM128 76c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12V76zm0 96c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40zm52 148h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40c0 6.627-5.373 12-12 12zm76 160h-64v-84c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v84zm64-172c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40zm0-96c0 6.627-5.373 12-12 12h-40c-6.627 0-12-5.373-12-12v-40c0-6.627 5.373-12 12-12h40c6.627 0 12 5.373 12 12v40z'/%3E%3C/svg%3E");
}

.home-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z'/%3E%3C/svg%3E");
}

.road-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M573.19 402.67l-139.79-320C428.43 71.29 417.6 64 405.68 64h-97.59l2.45 23.16c.5 4.72-3.21 8.84-7.96 8.84h-29.16c-4.75 0-8.46-4.12-7.96-8.84L267.91 64h-97.59c-11.93 0-22.76 7.29-27.73 18.67L2.8 402.67C-6.45 423.86 8.31 448 30.54 448h196.84l10.31-97.68c.86-8.14 7.72-14.32 15.91-14.32h68.8c8.19 0 15.05 6.18 15.91 14.32L348.62 448h196.84c22.23 0 36.99-24.14 27.73-45.33zM260.4 135.16a8 8 0 0 1 7.96-7.16h39.29c4.09 0 7.53 3.09 7.96 7.16l4.6 43.58c.75 7.09-4.81 13.26-11.93 13.26h-40.54c-7.13 0-12.68-6.17-11.93-13.26l4.59-43.58zM315.64 304h-55.29c-9.5 0-16.91-8.23-15.91-17.68l5.07-48c.86-8.14 7.72-14.32 15.91-14.32h45.15c8.19 0 15.05 6.18 15.91 14.32l5.07 48c1 9.45-6.41 17.68-15.91 17.68z'/%3E%3C/svg%3E");
}

.design-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M457.01 344.42c-25.05 20.33-52.63 37.18-82.54 49.05l54.38 94.19 53.95 23.04c9.81 4.19 20.89-2.21 22.17-12.8l7.02-58.25-54.98-95.23zm42.49-94.56c4.86-7.67 1.89-17.99-6.05-22.39l-28.07-15.57c-7.48-4.15-16.61-1.46-21.26 5.72C403.01 281.15 332.25 320 256 320c-23.93 0-47.23-4.25-69.41-11.53l67.36-116.68c.7.02 1.34.21 2.04.21s1.35-.19 2.04-.21l51.09 88.5c31.23-8.96 59.56-25.75 82.61-48.92l-51.79-89.71C347.39 128.03 352 112.63 352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96c0 16.63 4.61 32.03 12.05 45.66l-68.3 118.31c-12.55-11.61-23.96-24.59-33.68-39-4.79-7.1-13.97-9.62-21.38-5.33l-27.75 16.07c-7.85 4.54-10.63 14.9-5.64 22.47 15.57 23.64 34.69 44.21 55.98 62.02L0 439.66l7.02 58.25c1.28 10.59 12.36 16.99 22.17 12.8l53.95-23.04 70.8-122.63C186.13 377.28 220.62 384 256 384c99.05 0 190.88-51.01 243.5-134.14zM256 64c17.67 0 32 14.33 32 32s-14.33 32-32 32-32-14.33-32-32 14.33-32 32-32z'/%3E%3C/svg%3E");
}

.mep-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403.1c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z'/%3E%3C/svg%3E");
}

.green-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M64 96H0c0 123.7 100.3 224 224 224v144c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320C288 196.3 187.7 96 64 96zm384-64c-84.2 0-157.4 46.5-195.7 115.2 27.7 30.2 48.2 66.9 59 107.6C424 243.1 512 147.9 512 32h-64z'/%3E%3C/svg%3E");
}

.fot-service-content {
    padding: 25px 30px 35px;
    text-align: center;
}

.fot-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2a3d8f;
    transition: all 0.3s ease;
}

.fot-service-description {
    color: #666;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fot-service-card:hover .fot-service-title,
.fot-service-card:hover .fot-service-description {
    color: white;
}

.fot-service-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: #f15a24;
    border: 2px solid #f15a24;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fot-service-card:hover .fot-service-link {
    background-color: white;
    color: #f15a24;
    border-color: white;
}

.fot-service-link:hover {
    background-color: #f15a24;
    color: white;
}

.fot-service-card:hover .fot-service-link:hover {
    background-color: white;
    color: #2a3d8f;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .fot-services-container {
        padding: 80px 0;
    }
    
    .fot-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fot-section-title h2 {
        font-size: 2rem;
    }
    
    .fot-services-grid {
        grid-template-columns: 1fr;
    }
    
    .fot-services-container {
        padding: 60px 0;
    }
}





/* why choose us  */

.fot-why-choose-us {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 100px 0;
    background-color: #f9f9f9;
}

.fot-why-choose-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
}

.fot-why-choose-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fot-why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.fot-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 61, 143, 0.9);
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
}

.fot-stat-item {
    text-align: center;
    padding: 0 10px;
}

.fot-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f15a24;
    margin-bottom: 5px;
}

.fot-stat-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.fot-why-choose-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fot-why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fot-why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.fot-why-icon {
    width: 60px;
    height: 60px;
    background-color: #2a3d8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.fot-why-choose-item:hover .fot-why-icon {
    background-color: #f15a24;
}

.fot-svg-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fot-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2a3d8f;
    font-weight: 600;
}

.fot-info p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
/* Mobile-specific styling for why choose us section */
@media (max-width: 768px) {
    .fot-why-choose-us {
        padding: 50px 0;
        background-color: #f9f9f9;
    }
    
    .fot-why-choose-wrapper {
        flex-direction: column;
    }
    
    .fot-why-choose-image {
        min-height: 350px;
    }
    
    .fot-stats-overlay {
        padding: 20px;
    }
    
    /* Content styling for mobile */
    .fot-why-choose-content {
        gap: 20px;
        margin-top: 30px;
    }
    
    .fot-why-choose-item {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: none;
    }
    
    .fot-why-choose-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Square box with icon styling */
    .fot-why-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        position: relative;
    }
    
    /* All icons orange by default */
    .fot-svg-icon {
        width: 24px;
        height: 24px;
        stroke: #f15a24;
    }
    
    /* Change to blue on hover */
    .fot-why-choose-item:hover .fot-svg-icon {
        stroke: #2a3d8f;
    }
    
    /* Text styling */
    .fot-info {
        flex: 1;
    }
    
    .fot-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #333;
    }
    
    .fot-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #666;
    }
}

@media (max-width: 480px) {
    .fot-why-icon {
        margin-top: 3px;
    }
}




        /* Projects Section Styles */
.fot-projects-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.fot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fot-projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.fot-filter-btn {
    border: none;
    background: none;
    padding: 8px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.fot-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #f15a24;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.fot-filter-btn:hover {
    color: #2a3d8f;
}

.fot-filter-btn:hover::after {
    width: 70%;
}

.fot-filter-btn.active {
    color: #2a3d8f;
    font-weight: 600;
}

.fot-filter-btn.active::after {
    width: 70%;
    background-color: #f15a24;
}

.fot-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fot-project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.fot-project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.fot-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fot-project-item:hover .fot-project-img {
    transform: scale(1.1);
}

.fot-project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f15a24;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.fot-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(42, 61, 143, 0.9), rgba(42, 61, 143, 0.7), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
    height: 100%;
}

.fot-project-item:hover .fot-project-overlay {
    transform: translateY(0);
}

.fot-project-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fot-project-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
}

.fot-project-actions {
    display: flex;
    gap: 10px;
}

.fot-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a3d8f;
    transition: all 0.3s ease;
}

.fot-action-btn:hover {
    background-color: #f15a24;
    color: #fff;
}

.fot-action-btn svg {
    width: 18px;
    height: 18px;
}

.fot-hide {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .fot-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fot-projects-section {
        padding: 60px 0;
    }
    
    .fot-projects-filter {
        margin-bottom: 30px;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .fot-filter-btn {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .fot-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fot-project-item {
        height: 220px;
    }
}












/* Testimonials Section */
.fot-testimonials-section {
    padding: 70px 0;
    background-color: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Testimonials Container */
.fot-testimonials-container {
    position: relative;
    margin-top: 30px;
    padding: 20px 0;
    overflow: hidden;
}

.fot-testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* Testimonial Card */
.fot-testimonial-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 0 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Testimonial Profile */
.fot-testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.fot-testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #f6f6f6;
    flex-shrink: 0;
}

.fot-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fot-testimonial-identity h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 0 0 5px;
    font-weight: 600;
}

.fot-testimonial-identity p {
    color: #777;
    font-size: 0.9rem;
    margin: 0 0 8px;
}

.fot-testimonial-stars {
    color: #ffc107;
    font-size: 0.85rem;
}

/* Testimonial Quote */
.fot-testimonial-quote {
    position: relative;
    padding: 10px 0;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    flex: 1;
}

.fot-testimonial-quote p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.fot-quote-open, .fot-quote-close {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}

.fot-quote-open:before, .fot-quote-close:before {
    content: '"';
    font-size: 36px;
    color: var(--primary-orange);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.fot-quote-open:before {
    left: -10px;
    top: 0;
}

.fot-quote-close:before {
    content: '"';
    right: -10px;
    bottom: -20px;
}

/* Indicators */
.fot-testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.fot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fot-indicator.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .fot-testimonial-card {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .fot-testimonials-section {
        padding: 50px 0;
    }
    
    .fot-testimonial-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .fot-testimonial-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .fot-testimonial-quote {
        padding: 15px 0 5px;
    }
    
    .fot-testimonial-card {
        padding: 20px;
    }
}











/* Contact Section */
.fot-contact-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.fot-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.fot-section-title h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.fot-section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Contact Container Layout */
.fot-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fot-contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fot-contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

/* Info Cards */
.fot-info-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.fot-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.fot-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: rgba(42, 61, 143, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.fot-info-icon i {
    color: var(--primary-blue, #2a3d8f);
    font-size: 18px;
}

.fot-info-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 10px;
    font-weight: 600;
}

.fot-info-content p {
    color: #666;
    margin: 0 0 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form */
.fot-contact-form {
    width: 100%;
}

.fot-form-group {
    margin-bottom: 20px;
}

.fot-form-group input,
.fot-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.fot-form-group input:focus,
.fot-form-group textarea:focus {
    border-color: var(--primary-blue, #2a3d8f);
    box-shadow: 0 0 0 3px rgba(42, 61, 143, 0.1);
    outline: none;
    background-color: #fff;
}

.fot-submit-btn {
    background-color: var(--primary-blue, #2a3d8f);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.fot-submit-btn:hover {
    background-color: var(--primary-orange, #f15a24);
    transform: translateY(-2px);
}

.fot-form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.fot-form-status.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    display: block;
}

.fot-form-status.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
    .fot-contact-container {
        flex-direction: column;
    }
    
    .fot-contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fot-contact-section {
        padding: 50px 0;
    }
    
    .fot-section-title h2 {
        font-size: 1.8rem;
    }
    
    .fot-contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fot-info-card {
        padding: 15px;
    }
    
    .fot-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .fot-info-content h3 {
        font-size: 1rem;
    }
    
    .fot-form-group input,
    .fot-form-group textarea {
        padding: 10px 12px;
    }
}














/* Footer Section */
.fot-footer {
    background-color: #2a3d8f; /* Primary blue color */
    color: #fff;
    padding: 60px 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content */
.fot-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Logo Section */
.fot-footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.fot-footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.fot-footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    max-width: 180px;
}

/* Footer Links */
.fot-footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fot-footer-column {
    flex: 1;
    min-width: 160px;
}

.fot-footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.fot-footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #f15a24; /* Primary orange color */
}

.fot-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fot-footer-column ul li {
    margin-bottom: 10px;
}

.fot-footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.fot-footer-column ul li a:hover {
    color: #f15a24; /* Primary orange color */
    transform: translateX(3px);
}

/* Social Icons */
.fot-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.fot-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fot-social-icons a:hover {
    background-color: #f15a24; /* Primary orange color */
    transform: translateY(-3px);
}

.fot-contact-info {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.fot-contact-info i {
    margin-right: 8px;
    color: #f15a24; /* Primary orange color */
}


.contact-info-footer {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 8px;
    color: #f15a24; /* Primary orange color */
}

/* Footer Bottom */
.fot-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.fot-copyright p, .fot-credits p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.fot-credit-link {
    color: #f15a24; /* Primary orange color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fot-credit-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 992px) {
    .fot-footer-content {
        gap: 30px;
    }
    
    .fot-footer-logo {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .fot-footer {
        padding: 40px 0 0;
    }
    
    .fot-footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .fot-footer-links {
        gap: 20px;
    }
    
    .fot-footer-column {
        min-width: 140px;
    }
    
    .fot-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .fot-footer-links {
        flex-direction: column;
    }
    
    .fot-footer-column {
        width: 100%;
    }
}