@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-left: 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
}

.name-container {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
}

.company-name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 0;
    padding-bottom: 0;
    white-space: nowrap;
}

.name-separator {
    height: 2px;
    background-color: #00a0e4;
    margin: 0;
    width: 100%;
}

.tagline {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    padding-top: 2px;
    padding-left: 24px;
    line-height: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 10px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu li a:hover {
    color: #00a0e4;
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #00a0e4;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a:hover i {
    color: #000;
}

.menu li a i {
    margin-right: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.close-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50%;
    background-color: #f0f0f0;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex: 0 0 auto;
    position: relative;
}

.slide img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 0, 0, 0);
    color: #333;
    font-size: 24px;
    border-radius: 50%;
    user-select: none;
    border: none;
    outline: none;
    z-index: 10;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

.features-section {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    width: 100%;
}

.features-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    padding: 0 15px;
}

.feature-box {
    text-align: center;
    padding: 15px;
    margin: 10px;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #00a0e4;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.about-section {
    padding: 50px 0 70px;
    background-color: #f9f9f9;
    margin-top: 0;
}

.about-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #00a0e4;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.vision-section {
    position: relative;
    padding: 90px 0;
    color: #fff;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.vision-section .container {
    position: relative;
    z-index: 2;
}

.vision-section .section-title {
    color: #fff;
}

.vision-section .section-title::after {
    background-color: #00a0e4;
}

.vision-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.vision-text {
    max-width: 800px;
    text-align: center;
}

.vision-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #fff;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-text strong {
    color: #00a0e4;
    font-weight: 600;
}

/* Services Section Styling */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-section .container {
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.service-category {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 50px;
    color: #00a0e4;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.service-icon .fa-cogs {
    display: inline-block;
    animation: rotateGears 8s linear infinite;
}

@keyframes rotateGears {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-category:hover .service-icon {
    transform: scale(1.1);
}

.service-icon .fa-compass {
    display: inline-block;
    animation: pulseCompass 3s ease-in-out infinite;
}

@keyframes pulseCompass {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.service-icon .fa-tint {
    display: inline-block;
    animation: bobWater 2s ease-in-out infinite;
}

@keyframes bobWater {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Lightning Animation for Electrical Spares */
.service-icon .fa-bolt {
    display: inline-block;
    animation: flashBolt 3s ease-in-out infinite;
}

@keyframes flashBolt {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75% {
        transform: scale(1);
        opacity: 1;
    }
    80% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    85% {
        transform: scale(1);
        opacity: 1;
    }
    90% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.service-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #00a0e4;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-items {
    margin-top: 15px;
    flex-grow: 1;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.item-icon {
    color: #00a0e4;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.item-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.service-more {
    display: inline-block;
    margin-top: 20px;
    color: #00a0e4;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
    width: 100%;
    transition: color 0.3s ease;
    position: relative;
    overflow:hidden
}

.service-more::after {
    content: '📞';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    animation: phoneShake 1s ease-in-out infinite;
    animation-play-state: paused;
}

.service-more:hover {
    color: #0080b3;
}

.service-more:hover::after {
    transform: translateX(5px);
    animation-play-state: running;
}

@keyframes phoneShake {
    0% {
        transform: translateX(0) rotate(0);
    }
    25% {
        transform: translateX(-3px) rotate(-5deg);
    }
    50% {
        transform: translateX(0) rotate(0);
    }
    75% {
        transform: translateX(3px) rotate(5deg);
    }
    100% {
        transform: translateX(0) rotate(0);
    }
}

.service-category:hover .service-icon {
    transform: translateY(-5px);
}

.quote-section {
    position: relative;
    padding: 70px 0;
    color: #fff;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
    background-color: #004080;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 64, 128, 0.8);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.quote-text {
    max-width: 100%;
    text-align: center;
}

.quote-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-section {
    padding: 0px;
    background-color: #f9f9f9;
}

.portfolio-section .container {
    flex-direction: column;
    align-items: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 4:3 Aspect Ratio */
    
}

.portfolio-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.faqs-section {
    padding: 80px 0;
    background-color: #fff;
}

.faqs-section .container {
    flex-direction: column;
    align-items: center;
}

.faqs-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 15px;
    transition: color 0.3s ease;
}

.faq-toggle {
    color: #00a0e4;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: #00a0e4;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-toggle {
    color: #fff;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 5px 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.overlay-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.overlay-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

.contact-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    position: relative;
}

.contact-section .container {
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: #00a0e4;
    transition: height 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    height: 100%;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 160, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a0e4;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: #00a0e4;
    color: #fff;
}

/* Animation for Map Marker Icon */
.contact-card:nth-child(1) .contact-icon i {
    animation: bounce 2s ease-in-out infinite;
    animation-play-state: paused;
}

.contact-card:nth-child(1):hover .contact-icon i {
    animation-play-state: running;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation for Phone Icon */
.contact-card:nth-child(2) .contact-icon i {
    animation: shake 2s ease-in-out infinite;
    animation-play-state: paused;
}

.contact-card:nth-child(2):hover .contact-icon i {
    animation-play-state: running;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0);
    }
    20%, 60% {
        transform: rotate(-15deg);
    }
    40%, 80% {
        transform: rotate(15deg);
    }
}

/* Animation for Email Icon */
.contact-card:nth-child(3) .contact-icon i {
    animation: fly 2s ease-in-out infinite;
    animation-play-state: paused;
}

.contact-card:nth-child(3):hover .contact-icon i {
    animation-play-state: running;
}

@keyframes fly {
    0% {
        transform: translateX(0) rotate(0);
    }
    25% {
        transform: translateX(5px) rotate(10deg);
    }
    50% {
        transform: translateX(0) rotate(0);
    }
    75% {
        transform: translateX(-5px) rotate(-10deg);
    }
    100% {
        transform: translateX(0) rotate(0);
    }
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #00a0e4;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.contact-card:hover .contact-details h3::after {
    width: 50px;
}

.contact-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: #00a0e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0080b3;
    text-decoration: underline;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00a0e4;
    box-shadow: 0 0 0 3px rgba(0, 160, 228, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #00a0e4;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.send-btn:hover {
    background-color: #0080b3;
    transform: translateY(-2px);
}

.send-btn:hover::before {
    left: 100%;
}

.send-btn:active {
    transform: translateY(0);
}

.send-btn i {
    transition: transform 0.3s ease;
}

.send-btn:hover i {
    transform: translateX(5px);
    animation: send 1s ease-in-out infinite;
}

@keyframes send {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.footer {
    background-color: #001726;
    color: #fff;
    padding: 30px 0 20px;
}

.footer .container {
    flex-direction: column;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.footer-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 15px;
}

.contact-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.contact-link:hover {
    background-color: #00a0e4;
    transform: translateY(-3px);
}

.email-icon:hover {
    animation: flyEmail 1s ease-in-out infinite;
}

@keyframes flyEmail {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.whatsapp-icon:hover {
    animation: pulseWhatsapp 1s ease-in-out infinite;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #aaa;
}

.developer-info {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #aaa;
}

.developer-info a {
    color: #00a0e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #00a0e4;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.scroll-top-btn:hover {
    background-color: #0080b3;
    transform: translateY(0) scale(1.05);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 10px;
    }
    .logo {
        width: 50px;
    }
    .company-name {
        font-size: 18px;
    }
    .tagline {
        font-size: 10px;
        padding-left: 10px;
    }
    .slider-container {
        padding-top: 60%;
        margin-top: 60px;
    }
    .feature-icon {
        font-size: 50px;
    }
    .feature-title {
        font-size: 16px;
    }
    .about-section {
        padding: 80px 0 50px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .about-content {
        gap: 30px;
    }
    .vision-section {
        padding: 70px 0;
    }
    .vision-text p {
        font-size: 16px;
    }
    .services-section {
        padding: 70px 0;
    }
    .services-grid {
        gap: 25px;
    }
    .service-icon {
        font-size: 45px;
    }
    .service-title {
        font-size: 18px;
    }
    .quote-section {
        padding: 60px 0;
    }
    .quote-text p {
        font-size: 24px;
        white-space: normal;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .overlay-content h3 {
        font-size: 16px;
    }
    .overlay-content p {
        font-size: 13px;
    }

    .faqs-section {
        padding: 70px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }

    .contact-section {
        padding: 70px 0;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-details h3 {
        font-size: 17px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        padding: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        backdrop-filter: none !important;
    }
    .menu li {
        opacity: 1 !important;
        transform: none !important;
        margin: 0 5px !important;
        width: auto !important;
    }
    .menu li a {
        font-size: 14px !important;
        padding: 5px;
    }
    .mobile-menu-btn {
        display: none !important;
    }
    .nav-links {
        margin-left: 15px;
    }
    .features-section .container {
        max-width: 720px;
    }
    .feature-box {
        min-width: 200px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-text p {
        font-size: 22px;
    }
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    .portfolio-filter {
        margin-bottom: 30px;
    }
    .filter-btn {
        padding: 7px 18px;
        font-size: 13px;
        margin: 3px;
    }
}

@media (max-width: 768px) {
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .indicators {
        bottom: 10px;
    }
    .indicator {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    .slider-container {
        padding-top: 70%;
        margin-top: 70px;
    }
    .menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        height: 100vh;
        background-color: rgba(10, 25, 66, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px 30px;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        opacity: 0;
        z-index: 1001;
        visibility: hidden;
        align-items: center;
        text-align: center;
    }
    .menu.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .menu li {
        margin: 8px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }
    .menu.show li {
        opacity: 1;
        transform: translateX(0);
    }
    .menu.show li:nth-child(1) { transition-delay: 0.1s; }
    .menu.show li:nth-child(2) { transition-delay: 0.2s; }
    .menu.show li:nth-child(3) { transition-delay: 0.3s; }
    .menu.show li:nth-child(4) { transition-delay: 0.4s; }
    .menu.show li:nth-child(5) { transition-delay: 0.5s; }
    .menu.show li:nth-child(6) { transition-delay: 0.6s; }
    .menu.show li:nth-child(7) { transition-delay: 0.7s; }
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1002;
        transition: transform 0.4s ease, color 0.3s ease;
    }
    .mobile-menu-btn.open {
        transform: rotate(90deg);
        color: #00a0e4;
    }
    .menu li a {
        display: inline-block;
        text-align: center;
        margin-top: 10px;
    }
    .features-section {
        padding: 25px 0;
    }
    .features-section .container {
        flex-direction: column;
        max-width: 540px;
    }
    .feature-box {
        min-width: 100%;
        margin: 8px 0;
    }
    .feature-icon {
        font-size: 45px;
    }
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    .about-section {
        padding: 70px 0 40px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-category {
        padding: 25px 20px;
    }
    .vision-section {
        padding: 60px 0;
    }
    .vision-text p {
        font-size: 15px;
    }
    .quote-section {
        padding: 50px 0;
    }
    .quote-text p {
        font-size: 20px;
        white-space: normal;
        line-height: 1.4;
    }
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    .portfolio-filter {
        margin-bottom: 30px;
    }
    .filter-btn {
        padding: 7px 18px;
        font-size: 13px;
        margin: 3px;
    }
    .faqs-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 5px 20px 15px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .send-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .contact-links {
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .prev, .next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .slider-container {
        padding-top: 80%;
        margin-top: 60px;
    }
    .logo {
        width: 40px;
    }
    .company-name {
        font-size: 16px;
    }
    .tagline {
        font-size: 9px;
        padding-left: 10px;
    }
    .features-section {
        padding: 20px 0;
    }
    .feature-box {
        padding: 12px;
    }
    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .feature-title {
        font-size: 16px;
        margin-top: 10px;
    }
    .scroll-top-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
    .about-section {
        padding: 60px 0 30px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .about-text p {
        font-size: 15px;
    }
    .services-section {
        padding: 50px 0;
    }
    .service-category {
        padding: 20px 15px;
    }
    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .service-title {
        font-size: 17px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .item-text {
        font-size: 14px;
    }
    .service-item {
        margin-bottom: 12px;
    }
    .vision-section {
        padding: 50px 0;
    }
    .vision-text p {
        font-size: 14px;
    }
    .quote-section {
        padding: 40px 0;
    }
    .quote-text p {
        font-size: 18px;
        white-space: normal;
        padding: 0 10px;
    }
    .portfolio-section {
        padding: 50px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    .overlay-content h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .overlay-content p {
        font-size: 12px;
    }
    .filter-btn {
        padding: 6px 15px;
        font-size: 12px;
        margin: 2px;
    }
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 30px;
    }
    .filter-btn {
        width: 100%;
        margin: 3px 0;
    }
    .portfolio-item:hover {
        transform: translateY(-5px);
    }
    .portfolio-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    .overlay-content {
        padding: 10px;
    }
    .faqs-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px 15px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-toggle {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 5px 15px 15px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }

    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .contact-details h3 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .send-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-company-name {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .copyright-text, .developer-info {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .portfolio-img {
        padding-top: 100%; /* 3:2 Aspect Ratio for better visibility on small screens */
    }
    .filter-btn {
        font-size: 11px;
        padding: 5px 12px;
    }
}