:root {
    --angar-primary-color: #2563eb;
    --angar-primary-dark: #1e40af;
    --angar-secondary-color: #10b981;
    --angar-accent-color: #f59e0b;
    --angar-text-dark: #1f2937;
    --angar-text-light: #6b7280;
    --angar-bg-light: #f9fafb;
    --angar-bg-white: #ffffff;
    --angar-border-color: #e5e7eb;
    --angar-gradient-primary: linear-gradient(135deg,
            #667eea 0%,
            #764ba2 100%);
    --angar-gradient-secondary: linear-gradient(135deg,
            #f093fb 0%,
            #f5576c 100%);
    --angar-gradient-hero: linear-gradient(135deg,
            #667eea 0%,
            #764ba2 50%,
            #f093fb 100%);
    --angar-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --angar-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --angar-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --angar-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.angar-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.angar-btn-primary {
    background: #ca0e0e;
    color: white;
    box-shadow: var(--angar-shadow-md);
}

.angar-btn-primary:hover {
    background: #a00b0b;
    transform: translateY(-2px);
    box-shadow: var(--angar-shadow-lg);
}

.angar-btn-secondary {
    background: transparent;
    color: var(--angar-primary-color);
    border: 2px solid var(--angar-primary-color);
}

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

.angar-btn-large {
    padding: 1rem 2rem;
    text-decoration: none !important;
}

.angar-btn-white {
    background: white;
    color: var(--angar-primary-color);
    box-shadow: var(--angar-shadow-lg);
}

.angar-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--angar-shadow-xl);
}

.angar-btn-full {
    width: 100%;
}

/* Hero Section */
.angar-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #eafeff 0%, #ffffff 100%);
}

.angar-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.angar-hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.angar-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: angar-float 20s ease-in-out infinite;
}

.angar-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(202, 14, 14, 0.15);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.angar-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(234, 254, 255, 0.6);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.angar-shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(202, 14, 14, 0.1);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes angar-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.angar-hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.angar-hero-content {
    animation: angar-fadeInLeft 1s ease;
}

@keyframes angar-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes angar-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.angar-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--angar-text-dark);
    letter-spacing: -0.02em;
}

.angar-gradient-text {
    background: linear-gradient(135deg, #ca0e0e 0%, #a00b0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.angar-hero-subtitle {
    color: var(--angar-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
}

.angar-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.angar-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    color: var(--angar-text-dark);
}

.angar-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ca0e0e;
    color: white;
    border-radius: 50%;

    font-weight: 700;
    flex-shrink: 0;
}

.angar-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.angar-btn-outline {
    background: transparent;
    color: #ca0e0e;
    border: 2px solid #ca0e0e;
}

.angar-btn-outline:hover {
    background: #ca0e0e;
    color: white;
}

.angar-btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.angar-btn-primary:hover .angar-btn-arrow {
    transform: translateX(5px);
}

.angar-hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(202, 14, 14, 0.2);
}

.angar-stat-item {
    display: flex;
    flex-direction: column;
}

.angar-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ca0e0e;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.angar-stat-label {
    color: var(--angar-text-light);

    font-weight: 500;
}

/* Hero Visual */
.angar-hero-visual {
    position: relative;
    height: 500px;
    animation: angar-fadeInRight 1s ease;
}

@keyframes angar-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.angar-visual-card {
    position: absolute;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--angar-shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #f7f7f7;
}

.angar-visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(202, 14, 14, 0.3);
    border-color: rgba(202, 14, 14, 0.3);
}

.angar-card-1 {
    top: 0;
    left: 0;
    width: 200px;
    height: 180px;
    animation: angar-cardFloat1 6s ease-in-out infinite;
    background: #fff;
    border: 2px solid rgba(202, 14, 14, 0.1);
}

.angar-card-2 {
    top: 120px;
    right: 0;
    width: 220px;
    height: 200px;
    animation: angar-cardFloat2 8s ease-in-out infinite;
    background: #f7f7f7;
    border: 2px solid rgba(202, 14, 14, 0.1);
}

.angar-card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 180px;
    animation: angar-cardFloat3 7s ease-in-out infinite;
    background: #fff;
    border: 2px solid rgba(202, 14, 14, 0.15);
}

@keyframes angar-cardFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -15px) rotate(2deg);
    }
}

@keyframes angar-cardFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, 15px) rotate(-2deg);
    }
}

@keyframes angar-cardFloat3 {

    0%,
    100% {
        transform: translate(-50%, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -10px) rotate(1deg);
    }
}

.angar-card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.angar-card-title {
    font-weight: 700;
    color: var(--angar-text-dark);
    text-align: center;
}

.angar-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: #ca0e0e;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: -1;
    animation: angar-pulse 4s ease-in-out infinite;
}

@keyframes angar-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Section Styles */
.angar-section {
    padding: 80px 0;
}

.angar-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.angar-section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--angar-text-dark);
}

.angar-section-subtitle {
    color: var(--angar-text-light);
    line-height: 1.8;
}

/* Info Block Section */
.angar-info-block {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #eafeff 100%);
    position: relative;
}

.angar-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.angar-info-content {
    animation: angar-fadeInLeft 0.8s ease;
}

.angar-info-title {
    font-weight: 800;
    color: var(--angar-text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.angar-info-title .angar-gradient-text {
    background: linear-gradient(135deg, #ca0e0e 0%, #a00b0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angar-info-text {
    color: var(--angar-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.angar-info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.angar-info-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f7f7f7;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.angar-info-feature-item:hover {
    background: #eafeff;
    border-left-color: #ca0e0e;
    transform: translateX(10px);
}

.angar-info-feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.angar-info-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.angar-info-feature-text strong {
    font-weight: 700;
    color: var(--angar-text-dark);
}

.angar-info-feature-text span {
    color: var(--angar-text-light);
}

.angar-info-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: angar-fadeInRight 0.8s ease;
}

.angar-info-image-wrapper {
    position: relative;
}

.angar-info-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    background: #f7f7f7;
    border: 2px solid #f7f7f7;
}

.angar-info-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(202, 14, 14, 0.2);
    border-color: rgba(202, 14, 14, 0.3);
}

.angar-info-image-1 {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.angar-info-image-2 {
    background: #f7f7f7;
}

.angar-info-image-3 {
    background: #f7f7f7;
}

.angar-info-img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.angar-info-image:hover .angar-info-img {
    transform: scale(1.05);
}

/* Services Section */
.angar-services {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.angar-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, #eafeff 0%, #fff 50%);
    z-index: 0;
}

.angar-services .angar-container {
    position: relative;
    z-index: 1;
}

.angar-services-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 80px;
}

.angar-services-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            #ca0e0e 0%,
            rgba(202, 14, 14, 0.3) 100%);
    z-index: 0;
}

.angar-service-item {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    animation: angar-fadeInUp 0.6s ease both;
}

.angar-service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.angar-service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.angar-service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.angar-service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.angar-service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.angar-service-item:nth-child(6) {
    animation-delay: 0.6s;
}

.angar-service-number {
    position: absolute;
    left: -80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ca0e0e;
    color: white;

    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(202, 14, 14, 0.3);
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.angar-service-item:hover .angar-service-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(202, 14, 14, 0.4);
}

.angar-service-content {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f7f7f7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.angar-service-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ca0e0e;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.angar-service-item:hover .angar-service-content {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(202, 14, 14, 0.15);
    border-color: rgba(202, 14, 14, 0.2);
}

.angar-service-item:hover .angar-service-content::before {
    transform: scaleY(1);
}

.angar-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.angar-service-title {
    font-weight: 800;
    color: var(--angar-text-dark);
    margin: 0;
    flex: 1;
}

.angar-service-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.angar-service-description {
    color: var(--angar-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.angar-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.angar-service-features li {
    padding: 0.5rem 1rem;
    background: #f7f7f7;
    border-radius: 50px;

    color: var(--angar-text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 1.75rem;
}

.angar-service-features li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    color: #ca0e0e;
    font-weight: 700;
}

/* Advantages Section */
.angar-advantages {
    position: relative;
    background: #eafeff;
    color: #333;
    padding: 6rem 0;
    overflow: hidden;
}

.angar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #eafeff 100%);
    z-index: 1;
}

.angar-advantages .angar-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.angar-advantages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: #f7f7f7;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.angar-advantage-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.angar-advantage-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(202, 14, 14, 0.15);
}

.angar-advantage-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    background: #eafeff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 20px rgba(202, 14, 14, 0.15);
}

.angar-advantage-text h3 {
    font-weight: 700;
    color: #ca0e0e;
    margin-bottom: 0.5rem;
}

.angar-advantage-text p {
    line-height: 1.8;
    color: #333;
    max-width: 850px;
}

/* Portfolio Section */
.angar-portfolio {
    background: linear-gradient(180deg, #eafeff 0%, #ffffff 100%);
}

.angar-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.angar-portfolio-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--angar-shadow-md);
    transition: all 0.3s ease;
}

.angar-portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--angar-shadow-xl);
}

.angar-portfolio-image {
    height: 250px;
    background: var(--angar-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.angar-portfolio-info {
    padding: 1.5rem;
}

.angar-portfolio-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--angar-text-dark);
}

.angar-portfolio-description {
    color: var(--angar-text-light);
}

.angar-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.angar-construction-info {
    background: linear-gradient(180deg, #ffffff 0%, #eafeff 100%);
    padding: 80px 0;
    color: #333;
}

.angar-construction-info .angar-section-title {
    text-align: center;
    margin-bottom: 15px;
}

.angar-construction-info .angar-section-subtitle {
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.angar-construction-info .angar-construction-content p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* Contact Section */
.angar-contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #eafeff 0%, #fff 100%);
}

.angar-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.angar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.angar-contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--angar-bg-light);
    border-radius: 1rem;
}

.angar-contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.angar-contact-details h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--angar-text-dark);
}

.angar-contact-details p {
    color: var(--angar-text-light);
    margin-bottom: 0.25rem;
}

.angar-contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--angar-shadow-lg);
}

.angar-form-group {
    margin-bottom: 1.5rem;
}

.angar-form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--angar-border-color);
    border-radius: 0.5rem;

    font-family: inherit;
    transition: all 0.3s ease;
}

.angar-form-input:focus {
    outline: none;
    border-color: var(--angar-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.angar-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .angar-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .angar-hero-visual {
        height: 400px;
        order: -1;
    }

    .angar-info-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .angar-info-images {
        order: -1;
    }

    .angar-info-title {
        font-size: 2rem;
    }

    .angar-visual-card {
        transform: scale(0.9);
    }

    .angar-card-1 {
        width: 160px;
        height: 140px;
        padding: 1.5rem;
    }

    .angar-card-2 {
        width: 180px;
        height: 160px;
        padding: 1.5rem;
    }

    .angar-card-3 {
        width: 200px;
        height: 140px;
        padding: 1.5rem;
    }

    .angar-hero-title {
        font-size: 2.8rem;
    }

    .angar-hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .angar-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .angar-services-timeline {
        padding-left: 60px;
    }

    .angar-services-timeline::before {
        left: 30px;
    }

    .angar-service-number {
        left: -60px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .angar-service-content {
        padding: 2rem;
    }

    .angar-service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .angar-hero {
        padding: 60px 0;
    }

    .angar-hero-wrapper {
        gap: 2rem;
    }

    .angar-hero-visual {
        height: 300px;
    }

    .angar-visual-card {
        transform: scale(0.75);
    }

    .angar-card-1 {
        width: 120px;
        height: 110px;
        padding: 1rem;
        top: 10px;
        left: 10px;
    }

    .angar-card-2 {
        width: 140px;
        height: 120px;
        padding: 1rem;
        top: 80px;
        right: 10px;
    }

    .angar-card-3 {
        width: 150px;
        height: 110px;
        padding: 1rem;
        bottom: 10px;
    }

    .angar-card-icon {
        width: 40px;
        height: 40px;
    }

    .angar-card-title {
        font-size: 0.9rem;
    }

    .angar-hero-title {
        font-size: 2.2rem;
    }

    .angar-hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .angar-section-title {
        font-size: 2rem;
    }

    .angar-hero-buttons {
        flex-direction: column;
    }

    .angar-btn-large {
        width: 100%;
        text-align: center;
    }

    .angar-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .angar-stat-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .angar-stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .angar-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .angar-info-block {
        padding: 60px 0;
    }

    .angar-info-title {
        font-size: 1.8rem;
    }

    .angar-info-text {
        font-size: 1rem;
    }

    .angar-info-feature-item {
        padding: 1rem;
        gap: 1rem;
    }

    .angar-info-feature-icon {
        width: 40px;
        height: 40px;
    }

    .angar-info-images {
        gap: 1rem;
    }

    .angar-services-timeline {
        padding-left: 0;
        gap: 2rem;
    }

    .angar-services-timeline::before {
        display: none;
    }

    .angar-service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .angar-service-number {
        position: relative;
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .angar-service-content {
        padding: 1.5rem;
    }

    .angar-service-item:hover .angar-service-content {
        transform: translateX(0);
    }

    .angar-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .angar-service-title {
        font-size: 1.3rem;
    }

    .angar-service-icon {
        width: 40px;
        height: 40px;
    }

    .angar-service-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .angar-service-features li {
        width: 100%;
    }

    .angar-advantage-row {
        flex-direction: column;
        text-align: center;
    }

    .angar-advantage-icon {
        margin: 0 auto 1rem;
    }
}