/* Footer Dropdown Styles - Enhanced for better visibility */
.footer-dropdown {
    position: relative;
}

.footer-dropdown-toggle {
    color: #fff;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-dropdown-toggle:hover,
.footer-dropdown.open > .footer-dropdown-toggle {
    color: #ffd700;
}

.footer-dropdown-toggle i {
    margin-left: 6px;
    color: #ffd700;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.footer-dropdown.open .footer-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Footer Dropdown Menu - Enhanced visibility */
.footer-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
    background: #111;
    min-width: 200px;
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 8px;
}

.footer-dropdown.open .footer-dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-dropdown-menu li {
    margin: 0;
}

.footer-dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 0;
}

.footer-dropdown-menu li a:hover {
    background: #222;
    color: #ff8000;
    padding-left: 22px;
}
/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    max-width: 800px;
    margin-left: -25px;
}

.hero-buttons .btn {
    min-width: 160px;
    text-align: center;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Shimmer Effect */
.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, #f0f0f0 50%, #fff 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Core Services Section */
.core-services {
    padding: 80px 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #ff6600;
}

.service-content h3 {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-content p {
    color: #fff;
    opacity: 0.8;
}

.service-highlights {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.service-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.service-highlights i {
    color: #ff6600;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #000;
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
}

.audience-icon i {
    font-size: 2em;
    color: #fff;
}

.audience-card h3 {
    color: #ff6600;
    margin-bottom: 15px;
}

.audience-card p {
    color: #ddd;
}

/* Company Snapshot Section */
.company-snapshot {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)), url('images/city-bg.jpg') fixed;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.company-snapshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    animation: pulse-snapshot 4s infinite alternate;
    z-index: 1;
}

@keyframes pulse-snapshot {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.snapshot-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26,26,26,0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.snapshot-icon {
    font-size: 2.5em;
    color: #ff6600;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.snapshot-item:hover .snapshot-icon {
    transform: scale(1.2);
}

.snapshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: 0.5s;
}

.snapshot-item:hover::before {
    left: 100%;
}

.snapshot-item:hover {
    transform: translateY(-8px);
    border-color: #ff6600;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
}

.snapshot-label {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ff6600;
    font-weight: 600;
}

.snapshot-value {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.snapshot-item:hover .snapshot-value {
    transform: scale(1.05);
    color: #ff8533;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .audience-grid,
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Coverage Page Styles */
.coverage-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coverage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-coverage 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-coverage {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.coverage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-check-section {
    padding: 80px 0;
    background-color: #111;
    position: relative;
}

.coverage-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.coverage-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.coverage-form-header h2 {
    color: #ff6600;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.coverage-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.coverage-form .form-group {
    position: relative;
}

.coverage-form .form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.coverage-form .form-group input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3);
    outline: none;
}

.coverage-form .form-group .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.coverage-form button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
    width: auto;
    min-width: 200px;
}

.coverage-info-section {
    padding: 80px 0;
    background-color: #000;
}

.coverage-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coverage-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.coverage-info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 24px;
    color: #ff6600;
}

.coverage-info-card h3 {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.coverage-info-card p {
    color: #fff;
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .coverage-form {
        grid-template-columns: 1fr;
    }

    .coverage-info-grid {
        grid-template-columns: 1fr;
    }

    .coverage-form-container {
        padding: 20px;
        margin: 0 15px;
    }
}

/* Clients Section Styles */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #111, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite alternate;
    pointer-events: none;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: linear-gradient(145deg, #1c1c1c, #242424);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.1);
}

.client-icon i {
    font-size: 24px;
    color: white;
}

.client-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: white;
}

.client-card p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-features li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #ddd;
}

.client-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.client-commitment {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

.client-commitment p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

.client-commitment .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        padding: 20px;
    }

    .client-commitment {
        padding: 20px;
    }
}

/* Careers Page Styles */
.careers-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.job-application-section {
    padding: 80px 0;
    background-color: #111;
}

.job-application-container {
    max-width: 900px;
    margin: 0 auto;
}

.job-application-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ff6600;
    text-align: center;
}

.job-application-container p {
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.job-application-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.job-application-form .form-group.full-width {
    grid-column: 1 / -1;
}

.job-application-form .form-group input,
.job-application-form .form-group textarea,
.job-application-form .form-group select {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.job-application-form .form-group input:focus,
.job-application-form .form-group textarea:focus,
.job-application-form .form-group select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3);
    outline: none;
}

.job-application-form .form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.job-application-form .form-group select option {
    background-color: #1a1a1a;
    color: #fff;
}

.job-application-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.file-upload {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: inline-block;
}

.file-upload input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    cursor: pointer;
    display: block;
}

.file-upload-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.5);
    border-radius: 5px;
    color: #ff6600;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    background-color: rgba(255, 102, 0, 0.2);
}

.file-name {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.form-section-title {
    color: #ff6600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
    padding-bottom: 10px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #ff6600;
}

.job-application-form button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
    width: auto;
    min-width: 200px;
}

.available-positions {
    padding: 80px 0;
    background-color: #000;
}

.positions-container {
    max-width: 900px;
    margin: 0 auto;
}

.positions-container h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

.positions-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, transparent);
}

.position-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.2);
}

.position-card h3 {
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 15px;
}

.position-card ul {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    padding-left: 20px;
}

.position-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.position-meta span {
    display: flex;
    align-items: center;
}

.position-meta i {
    margin-right: 5px;
    color: #ff6600;
}

.position-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-card .btn {
    display: inline-block;
}

.careers-hero .hero-content {
    text-align: center;
}

.careers-hero .hero-content p {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .job-application-form {
        grid-template-columns: 1fr;
    }

    .position-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
    background-color: #111;
}

.partners-slider {
    padding: 20px 0;
}

.partners-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.partners-slider .swiper-slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partners-slider .swiper-slide img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6600;
    color: #fff;
    border: 2px solid #ff6600;
}

.btn-primary:hover {
    background-color: #e55c00;
    border-color: #e55c00;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    font-size: 14px;
    padding: 8px 15px;
}

.btn-outline:hover {
    background-color: #ff6600;
    color: #fff;
}

/* Header/Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite alternate;
    pointer-events: none;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, transparent);
    animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
    0% { width: 0; }
    100% { width: 100px; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-tag {
    color: #ff6600;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, transparent);
}

/* Services Carousel */
.services-carousel-container {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

.services-carousel {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.85;
    transform: scale(0.9);
    z-index: 1;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #ff6600;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 102, 0, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    bottom: -40px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ff6600;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.service-card {
    background-color: #111;
    border-radius: 15px;
    padding: 35px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 10px 5px 30px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent 70%);
    opacity: 0;
    z-index: -1;
    transform: scale(0.5);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 102, 0, 0.3);
    border-color: rgba(255, 102, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover::after {
    opacity: 0.5;
    transform: scale(1);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.3; transform: scale(0.95); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

/* Service Card in Swiper */
.swiper-slide-active .service-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 102, 0, 0.2);
    border-color: rgba(255, 102, 0, 0.2);
}

.swiper-slide-active .service-card::before {
    opacity: 0.8;
}

.swiper-slide-active .service-card::after {
    opacity: 0.3;
    transform: scale(0.9);
}

/* Service Card Hover Effects */
.service-card.hovered {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 102, 0, 0.2);
    border-color: rgba(255, 102, 0, 0.3);
}

.service-card.hovered::before {
    opacity: 1;
}

.service-card.hovered::after {
    opacity: 0.5;
    transform: scale(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    background-color: rgba(255, 102, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.3));
}

.swiper-slide-active .service-image,
.service-card:hover .service-image {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.service-icon.orange {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-links a {
    color: #aaa;
    font-size: 0.85rem;
}

.service-links a:hover {
    color: #ff6600;
}

.service-action {
    margin-top: 20px;
}

/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}

/* Navigation */
.main-nav {
    background-color: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Leak Detect Plus Page Specific Logo Styling */
.leak-detect-bg .logo img {
    height: 80px;
    filter: brightness(1.2) contrast(1.1);
}

.leak-detect-bg .logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.3) contrast(1.2);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff6600;
}

.nav-links li a.active {
    color: #ff6600;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 102, 0, 0.1);
    padding-left: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        text-align: center;
    }
    
    .dropdown-toggle {
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu li a {
        padding: 8px 0;
    }
    
    .dropdown-menu li a:hover {
        background-color: transparent;
        padding-left: 0;
    }
}
/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    animation: pulse-contact 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-contact {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #111;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6600, #ff9d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-section {
    padding: 80px 0;
    background-color: #000;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.map-container {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
}

.contact-form button {
    grid-column: 2;
    justify-self: end;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #000;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ftth-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.business-broadband-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #0a2240; /* Darker blue background tint for business feel */
}

.cloud-solutions-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a3a6c; /* Deep blue with slight purple tint for cloud/tech feel */
}

.promotional-merchandising-hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #4a2c82; /* Purple background for creative/promotional feel */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.service-stat .stat-label {
    font-size: 1.1rem;
    color: #666;
}

.service-features {
    padding: 80px 0;
    background-color: #fff;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.service-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #ff6600;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features ul li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    color: #ff6600;
    margin-right: 10px;
}

.package-action {
    padding: 0 30px 30px;
    text-align: center;
}

.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #eee;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.process-action {
    text-align: center;
    margin-top: 50px;
}

.service-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.service-faq {
    padding: 80px 0;
    background-color: #fff;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    color: #ff6600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Service Pages */
@media (max-width: 992px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e55c00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
        justify-self: center;
        margin-top: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        margin: 10px 20px;
    }
}
/* Innovation Showcase */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 102, 0, 0.3);
}

.innovation-icon {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1);
}

.innovation-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.innovation-card p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1em;
}

.innovation-highlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: #ff6600;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    color: #999;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box .feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ff6600, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-label {
    color: #999;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background-color: #111;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Page Styles */
.about-hero {
  background: url('images/about-bg.svg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  animation: pulse-about 4s infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-about {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(90deg, #ff6b00, #fff, #ff6b00);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.shimmer-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmerAfter 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmerAfter {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About Intro Section */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.shape1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b00, #ff9d00);
  top: 20%;
  left: 20%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b00, #ff4500);
  bottom: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(5deg); }
  50% { transform: translate(5px, -10px) rotate(0deg); }
  75% { transform: translate(-10px, 5px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #ff6b00;
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d4d, #ff6b00);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  display: inline-block;
}

.stat-plus, .stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #111;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-item {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff9d00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.mission-item:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.mission-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 107, 0, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  background-color: #222;
}

.team-member:hover::after {
  height: 100%;
}

.team-member h3, .team-member .member-position, .team-member p {
  position: relative;
  z-index: 1;
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .member-social {
  opacity: 1;
  transform: translateY(0);
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.member-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b00;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.member-social a:hover::before {
  transform: scale(1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 20px 5px;
  color: #fff;
}

.member-position {
  display: block;
  font-size: 0.9rem;
  color: #ff6b00;
  margin: 0 20px 15px;
}

.team-member p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Count Up Animation */
.count-up {
  display: inline-block;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('contact-bg.svg');
    background-size: cover;
    background-position: center;}
