:root {
    --primary-color: #2563eb;
    --secondary-color: #0ea5e9;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}



.alt{
    padding-bottom:30px;
}
.main-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}
.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: transform 0.3s;
}
.navbar-brand:hover {
    transform: scale(1.05);
}
.navbar-brand span {
    color: var(--secondary-color);
}
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.btn-call {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: none;
}
.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    color: white;
}
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-slide {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85));
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 0.8s;
}
.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}
.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    color: var(--primary-color);
}
.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.hero-btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}
.carousel-control-prev {
    left: 30px;
    display:none;
}
.carousel-control-next {
    right: 30px;
    display:none;
}
.carousel-indicators {
    bottom: 30px;
}
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s;
}
.carousel-indicators button.active {
    width: 40px;
    border-radius: 10px;
    background: white;
}
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 400px;
}
@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
    .mobile-call-button .btn {
        width: 100%;
        padding: 18px;
        font-size: 18px;
        font-weight: 700;
        background: linear-gradient(135deg, #10b981, #059669);
        border: none;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        animation: pulse 2s infinite;
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.how-it-works {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    padding: 80px 0;
}
.how-it-works .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.work-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.work-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.work-step:hover::before {
    transform: scaleX(1);
}
.work-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.work-step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.work-step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.work-step p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}
.icon-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.icon-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: all 0.5s;
}
.icon-box:hover::before {
    opacity: 1;
    top: 0;
    left: 0;
}
.icon-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.icon-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s;
}
.icon-box:hover i {
    transform: scale(1.2) rotate(5deg);
}
.icon-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.icon-box p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .icon-box h4,
    .icon-box p {
        display: none;
    }
    .icon-box {
        padding: 20px 10px;
    }
    .icon-box i {
        font-size: 36px;
        margin-bottom: 0;
    }
}
.section {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}
.section-title p {
    color: var(--text-color);
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
}
.about-section {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent);
    border-radius: 50%;
}
.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}
.about-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
}
.about-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-color);
}
.about-features {
    margin-top: 40px;
}
.about-feature {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.about-feature i {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}
.about-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}
.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.about-image:hover::before {
    opacity: 1;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.about-image:hover img {
    transform: scale(1.05);
}
.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.service-card:hover::before {
    opacity: 0.05;
}
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}
.service-card:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
}
.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 2;
}
.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}
.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}
.service-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}
.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s;
}
.service-card:hover .service-content h4 {
    color: var(--primary-color);
}
.service-content p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.7;
}
.faq-section {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
}
.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}
.accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 17px;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s;
}
.accordion-button:not(.collapsed) {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after {
    transition: transform 0.3s;
}
.accordion-body {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.9;
    background: white;
}
.cta-section {
    background: var(--gradient-1);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.cta-section::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}
.cta-section::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-content p {
    font-size: 20px;
    margin-bottom: 0;
    opacity: 0.95;
}
.cta-buttons .btn {
    margin: 0 10px 10px 0;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-light-cta {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.btn-light-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0;
    margin-bottom:70px;
}
.footer-widget h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}
.footer-widget h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}
.footer-widget p {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.8;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
}
.footer-widget ul li {
    margin-bottom: 12px;
}
.footer-widget ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.footer-widget ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}
.footer-widget ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}
.footer-contact {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}
.footer-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}
.footer-contact i {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}
.footer-contact a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}
.footer-contact a:hover {
    opacity: 1;
    color: var(--secondary-color);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 18px;
}
.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
}
.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.7;
}
.footer-bottom a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}
.footer-bottom a:hover {
    opacity: 1;
    color: var(--secondary-color);
}
.fixed-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 25px rgba(16, 185, 129, 0.3);
    animation: slideUp 0.5s;
}
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
.fixed-call-bar .btn {
    background: white;
    color: #000000;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.fixed-call-bar .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}
.fixed-call-bar .btn i {
    font-size: 20px;
    animation: ring 2s infinite;
}
@keyframes ring {
    0%,
    100% {
        transform: rotate(0);
    }
    10%,
    30% {
        transform: rotate(-15deg);
    }
    20%,
    40% {
        transform: rotate(15deg);
    }
}
.page-header {
    background: var(--gradient-1);
    color: white;
    padding: 120px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}
.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.page-header p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}
.content-section {
    padding: 100px 0;
}
.content-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}
.content-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
}
.content-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
}
.content-section p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
}
.content-section ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}
.content-section ul li {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.content-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}
.content-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
    position: relative;
}
.content-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}
.content-image:hover::before {
    opacity: 1;
}
.content-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}
.content-image:hover img {
    transform: scale(1.05);
}
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}
.contact-form .form-control {
    padding: 15px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
    font-size: 16px;
}
.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}
.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.contact-info-box {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-info-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: all 0.5s;
}
.contact-info-box:hover::before {
    opacity: 1;
    top: 0;
    left: 0;
}
.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.contact-info-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.contact-info-box:hover i {
    transform: scale(1.2) rotate(10deg);
}
.contact-info-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-info-box p {
    margin-bottom: 0;
    font-size: 17px;
}
.contact-info-box a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}
.contact-info-box a:hover {
    color: var(--primary-color);
}
.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    color: white;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .page-header h1 {
        font-size: 36px;
    }
    .section {
        padding: 70px 0;
    }
}
@media (max-width: 768px) {
    .hero-slider,
    .hero-slide {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    .section {
        padding: 60px 0;
    }
    .cta-content h2 {
        font-size: 32px;
    }
    .cta-content p {
        font-size: 18px;
    }
    .work-step {
        margin-bottom: 30px;
    }
    .footer {
        padding-bottom: 70px;
    }
}
