.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    background-image: url("https://images.pexels.com/photos/3183183/pexels-photo-3183183.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.hero-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
}

.hero-button:active {
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.about-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-container {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.about-image-main {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-small {
    width: 30%;
    height: 0;
    padding-bottom: 30%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border: 4px solid #f8f8f2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-img-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    width: 20%;
    height: 0;
    padding-bottom: 20%;
    border-radius: 50%;
    background-color: #0066ff;
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 2;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.about-underline {
    width: 80px;
    height: 3px;
    background-color: #0066ff;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* Background squares decoration */
.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

.about-section::before {
    top: 40px;
    left: 40px;
}

.about-section::after {
    bottom: 40px;
    right: 40px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image-container {
        margin-bottom: 40px;
    }

    .about-underline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .about-image-container {
        max-width: 280px;
    }

    .about-heading {
        font-size: 1.6rem;
    }
}

.mission-section {
    position: relative;
    padding: 80px 0;
    background-image: url("https://placehold.co/1200x600/0066ff/cccccc?text=Office+Environment");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 255, 0.85);
}

.mission-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.mission-heading {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 20px;
    color: #fff;
}

.mission-line {
    height: 1px;
    background-color: #fff;
    flex-grow: 1;
    max-width: 150px;
}

.mission-content {
    text-align: center;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-heading {
        font-size: 1.5rem;
    }

    .mission-line {
        max-width: 80px;
    }

    .mission-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 50px 0;
    }

    .mission-heading {
        font-size: 1.3rem;
        margin: 0 10px;
    }

    .mission-line {
        max-width: 60px;
    }

    .mission-text {
        font-size: 0.95rem;
    }
}

.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-container {
    width: 100%;
}

.features-header {
    margin-bottom: 50px;
}

.features-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.features-subheading {
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover effects */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-indicator {
    width: 100%;
}

.feature-card:hover .feature-title {
    color: #0066ff;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #0066ff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-primary {
    background-color: #0d2b45;
    color: #fff;
}

.feature-primary:hover {
    background-color: #0a223a;
}

.feature-primary:hover .feature-title {
    color: #fff;
}

.feature-primary .feature-indicator {
    background-color: rgba(255, 255, 255, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-description {
    font-size: 0.95rem;
    color: inherit;
    opacity: 0.9;
    margin-bottom: 20px;
}

.feature-highlight {
    color: #0066ff;
    font-weight: 600;
}

.feature-primary .feature-highlight {
    color: #4dabf7;
}

.feature-indicator {
    height: 3px;
    width: 50px;
    background-color: rgba(0, 102, 255, 0.3);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 15px;
    }

    .features-heading {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-heading {
        font-size: 1.6rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

.approach-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container {
    width: 100%;
}

.approach-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    text-align: center;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.approach-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.approach-card:hover .approach-icon-container {
    transform: rotate(45deg);
}

.approach-card:hover .approach-icon {
    transform: rotate(-45deg);
}

.approach-card:hover .approach-indicator {
    width: 80px;
    background-color: #0066ff;
}

.approach-icon-container {
    width: 70px;
    height: 70px;
    background-color: #0066ff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transform: rotate(25deg);
    transition: transform 0.3s ease;
}

.approach-icon {
    color: #fff;
    transform: rotate(-25deg);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
}

.approach-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.approach-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.approach-indicator {
    height: 3px;
    width: 40px;
    background-color: #cce0ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .approach-section {
        padding: 60px 15px;
    }

    .approach-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .approach-heading {
        font-size: 1.6rem;
    }

    .approach-card {
        padding: 25px 20px;
    }

    .approach-icon-container {
        width: 60px;
        height: 60px;
    }
}

.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before,
.team-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    background-color: #0066ff;
    z-index: -1;
}

.team-section::before {
    left: 0;
}

.team-section::after {
    right: 0;
}

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

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.team-underline {
    width: 50px;
    height: 3px;
    background-color: #0066ff;
    margin: 0 auto;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #0066ff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.team-position {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive styles */
@media (max-width: 992px) {
    .team-section::before,
    .team-section::after {
        width: 10%;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-section::before,
    .team-section::after {
        width: 5%;
    }

    .team-heading {
        font-size: 1.8rem;
    }

    .team-members {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team-section::before,
    .team-section::after {
        display: none;
    }

    .team-heading {
        font-size: 1.6rem;
    }

    .team-card {
        max-width: 100%;
    }
}

.stats-section {
    background-color: #0066ff;
    padding: 30px 20px;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
}

.stat-bubble {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    opacity: 0.8;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.stat-bubble.animate {
    transform: scale(1);
    opacity: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066ff;
}

.stat-label {
    font-size: 1rem;
    text-align: center;
    color: #fff;
}

/* Hover effects */
.stat-item:hover .stat-bubble {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 0 40%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 1 0 100%;
    }

    .stat-bubble {
        width: 90px;
        height: 90px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}
