/* Core Variables */
:root {
    /* Primary Colors */
    --primary-color: #007C91; /* Turquoise Blue */
    --secondary-color: #2C6E49; /* Deep Green */
    
    /* Secondary Colors */
    --neutral-color: #F9F7F3; /* Lighter Beige */
    --accent-yellow: #FFC857; /* Bright Yellow */
    --gray-color: #7A7A7A; /* Cool Gray */
    
    /* Accent Colors */
    --accent-orange: #FF6F3C; /* Violent Orange */
    --light-blue: #E8F4F8; /* Very Light Blue */
    
    --dark-color: #212529;
    }
    
      .fade-up, .fade-left, .fade-right, .fade-in {
        opacity: 1 !important;
        transform: none !important;
      }
    /* Base Styles */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
    background-color: var(--neutral-color);
    color: var(--dark-color);
    }
    
    /* Smooth Scrolling */
    html {
    scroll-behavior: smooth;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    }
    
    p {
    line-height: 1.6;
    margin-bottom: 1rem;
    }
    
    a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    }
    
    a:hover {
    text-decoration: none;
    }
    
    /* Utility Classes */
    .text-center {
    text-align: center;
    }
    
    .img-fluid {
    max-width: 100%;
    height: auto;
    }
    
    .rounded-4 {
    border-radius: 1rem;
    }
    
    /* Button Styles */
    .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-align: center;
    }
    
    .primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 124, 145, 0.2);
    }
    
    .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 124, 145, 0.3);
    color: white;
    }
    
    .secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    }
    
    .secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    }
    
    .accent-btn {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 111, 60, 0.2);
    }
    
    .accent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 60, 0.3);
    color: white;
    }
    
    /* Section Styles */
    section {
    padding: 100px 0;
    position: relative;
    }
    
    .section-title {
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    }
    
    .section-title::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    right: 0;
    border-radius: 2px;
    }
    
    .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 50px;
    }
    
    /* Preloader */
    #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .loader svg {
    width: 80px;
    height: 80px;
    }
    
    /* Back to Top Button */
    .back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 99;
    }
    
    .back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
    }
    
    .back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Animation Classes */
    .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-up.active {
    opacity: 1;
    transform: translateY(0);
    }
    
    .fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-right.active {
    opacity: 1;
    transform: translateX(0);
    }
    
    .fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-left.active {
    opacity: 1;
    transform: translateX(0);
    }
    
    .fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
    }
    
    .fade-in.active {
    opacity: 1;
    }
    
    .delay-1 {
    transition-delay: 0.1s;
    }
    
    .delay-2 {
    transition-delay: 0.2s;
    }
    
    .delay-3 {
    transition-delay: 0.3s;
    }
    
    .delay-4 {
    transition-delay: 0.4s;
    }
    
    .delay-5 {
    transition-delay: 0.5s;
    }
    
    /* Navbar Styles */
    .navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
    }
    
    .navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand img {
    height: 50px;
    transition: all 0.4s ease;
    }
    
    .navbar.scrolled .navbar-brand img {
    height: 40px;
    }
    
    .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    }
    
    .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
    width: 100%;
    }
    
    .nav-link:hover {
    color: var(--primary-color) !important;
    }
    
    .navbar .contact-btn {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    margin-right: 15px;
    transition: all 0.3s ease;
    }
    
    .navbar .contact-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    }
    
    .dropdown-item {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--primary-color);
    transform: translateX(-5px);
    }
    
    /* Hero Section */
    .hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    background-color: white;
    overflow: hidden;
    position: relative;
    }
    
    .hero-content {
    z-index: 2;
    }
    
    .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    }
    
    .hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
    }
    
    .hero-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    }
    
    .hero-btn-group {
    display: flex;
    gap: 20px;
    }
    
    .hero-image-container {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
    }
    
    .hero-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg);
    }
    
    .hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    }
    
    .hero-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    }
    
    .dots-1 {
    top: 10%;
    right: 5%;
    }
    
    .dots-2 {
    bottom: 10%;
    left: 5%;
    }
    
    .floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 124, 145, 0.1);
    top: -100px;
    right: -150px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 111, 60, 0.1);
    bottom: -100px;
    left: -150px;
    }
    
    /* About Section */
    .about {
    background-color: var(--neutral-color);
    position: relative;
    }
    
    .about-image-container {
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    margin-top: 30px;
    }
    
    .about-experience {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    }
    .about-experience h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    }
    
    .about-experience p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.9rem;
    }
    .about-feature {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    }
    
    .about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .about-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    }
    
    /* Services Section */
    .services {
    background-color: white;
    position: relative;
    overflow: hidden;
    }
    
    .service-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    }
    
    .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
    }
    
    .service-card:hover::before {
    height: 100%;
    }
    
    .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    }
    
    .service-card:hover .service-icon {
    transform: rotateY(360deg);
    }
    
    .service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    }
    
    .service-text {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.8;
    }
    
    /* Work Process */
    .process {
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
    }
    
    .process-container {
    position: relative;
    }
    
    .process-line {
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
    }
    
    .process-step {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    }
    
    .process-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 124, 145, 0.2);
    }
    
    .process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 124, 145, 0.3);
    }
    
    .process-title {
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    }
    
    .process-step:hover .process-title {
    color: var(--primary-color);
    }
    
    .process-text {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.6;
    }
    
    /* Portfolio */
    .portfolio {
    background-color: var(--neutral-color);
    position: relative;
    overflow: hidden;
    }
    
    .portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    }
    
    .portfolio-filter {
    padding: 8px 20px;
    margin: 5px;
    background-color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
    color: var(--gray-color);
    }
    
    .portfolio-filter.active,
    .portfolio-filter:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    }
    
    .portfolio-item {
    margin-bottom: 30px;
    }
    
    .portfolio-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    }
    
    .portfolio-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
    }
    
    .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 124, 145, 0.9), rgba(44, 110, 73, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 20px;
    }
    
    .portfolio-wrapper:hover .portfolio-overlay {
    opacity: 1;
    }
    
    .portfolio-wrapper:hover .portfolio-img {
    transform: scale(1.1);
    }
    
    .portfolio-title {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.5s ease;
    opacity: 0;
    }
    
    .portfolio-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.5s ease;
    transition-delay: 0.1s;
    opacity: 0;
    }
    
    .portfolio-wrapper:hover .portfolio-title,
    .portfolio-wrapper:hover .portfolio-category {
    transform: translateY(0);
    opacity: 1;
    }
    
    .portfolio-btn {
    display: inline-block;
    margin-top: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 124, 145, 0.2);
    }
    
    .portfolio-btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: 0 15px 30px rgba(0, 124, 145, 0.3);
    }
    
    /* Testimonials */
    .testimonials {
    background-color: white;
    position: relative;
    overflow: hidden;
    }
    
    .testimonial-card {
    background-color: var(--light-blue);
    border-radius: 20px;
    padding: 40px 30px 30px;
    position: relative;
    margin: 70px 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    }
    
    .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -50px;
    right: 30px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    }
    
    .testimonial-content {
    padding-top: 40px; /* Add space between avatar and text */
    }
    
    .testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.8;
    }
    
    .testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
    }
    
    .testimonial-position {
    color: var(--gray-color);
    font-size: 0.9rem;
    }
    
    .testimonial-rating {
    color: var(--accent-yellow);
    margin-top: 15px;
    font-size: 1.2rem;
    }
    
    /* Clients */
    .clients {
    background-color: var(--neutral-color);
    position: relative;
    overflow: hidden;
    }
    
    .clients-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }
    
    .client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 0.7;
    filter: grayscale(100%);
    }
    
    .client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    filter: grayscale(0%);
    }
    
    .client-logo img {
    max-height: 60px;
    max-width: 100px;
    }
    
    /* Slogan */
    .slogan {
    background: linear-gradient(rgba(44, 110, 73, 0.9), rgba(0, 124, 145, 0.9)), url('https://images.unsplash.com/photo-1548092372-0d1bd40894a3?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=900&ixid=MnwxfDB8MXxyYW5kb218MHx8dGVjaG5vbG9neXx8fHx8fDE2MTY2MjQyMjA&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1600') center/cover no-repeat fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    
    .slogan-content {
    position: relative;
    z-index: 2;
    }
    
    .slogan-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
    }
    
    .slogan-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    }
    
    .slogan-btn {
    background-color: rgb(253, 253, 253);
    color: var(--secondary-color) ;
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .slogan-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--dark-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    /* CTA */
    .cta {
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
    }
    
    .cta-content {
    background-color: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    }
    
    .cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    }
    
    .cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    }
    
    .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }
    
    .cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    }
    
    .cta-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    }
    
    .cta-shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 124, 145, 0.1);
    top: -150px;
    right: -100px;
    }
    
    .cta-shape-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 111, 60, 0.1);
    bottom: -100px;
    left: -50px;
    }
    
    /* Contact */
    .contact {
    background-color: white;
    position: relative;
    }
    
    .contact-info-item {
    display: flex;
    margin-bottom: 30px;
    }
    
    .contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    flex-shrink: 0;
    }
    
    .contact-info-text {
    flex-grow: 1;
    }
    
    .contact-info-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
    }
    
    .contact-info-details {
    color: var(--gray-color);
    line-height: 1.6;
    }
    
    .contact-form {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
    margin-bottom: 20px;
    }
    
    .form-control {
    height: 55px;
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    }
    
    .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    }
    
    textarea.form-control {
    height: 150px;
    resize: none;
    }
    
    .submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    }
    
    .submit-btn:hover {
    box-shadow: 0 15px 30px rgba(0, 124, 145, 0.2);
    transform: translateY(-5px);
    }
    
    .social-icons {
    display: flex;
    gap: 15px;
    }
    
    .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Footer */
    footer {
    background: linear-gradient(rgba(44, 110, 73, 0.95), rgba(0, 124, 145, 0.95)), url('https://images.unsplash.com/photo-1557683316-973673baf926?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=900&ixid=MnwxfDB8MXxyYW5kb218MHx8dGVjaHx8fHx8fDE2MTY2MjQyNzA&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1600') center/cover no-repeat;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    }
    
    .footer-logo {
    margin-bottom: 20px;
    }
    
    .footer-logo img {
    height: 60px;
    }
    
    .footer-about {
    margin-bottom: 30px;
    line-height: 1.8;
    }
    
    .footer-heading {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
    }
    
    .footer-heading::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
    bottom: -10px;
    right: 0;
    }
    
    .footer-links li {
    margin-bottom: 15px;
    }
    
    .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    }
    
    .footer-links a:hover {
    color: white;
    transform: translateX(-5px);
    text-decoration: none;
    }
    
    .footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    }
    
    .footer-contact i {
    margin-left: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-yellow);
    transition: all 0.3s ease;
    }
    
    .footer-contact li:hover i {
    background-color: var(--accent-yellow);
    color: var(--dark-color);
    transform: scale(1.1);
    }
    
    footer .social-icons {
    display: flex;
    gap: 15px;
    }
    
    footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    }
    
    footer .social-icon:hover {
    background-color: var(--accent-yellow);
    color: var(--dark-color);
    transform: translateY(-5px);
    text-decoration: none;
    }
    
    .copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    }
    .progress-bar {
        position: absolute;
        bottom: 20%;
        left: 15%;
        width: 0;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    /* Responsive Styles */
    @media (max-width: 991px) {
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.2rem;
    }
    
    .hero-image-container {
    margin-top: 50px;
    height: 400px;
    }
    
    .process-line {
    display: none;
    }
    
    .cta-content {
    padding: 40px 20px;
    }
    }
    
    @media (max-width: 767px) {
    section {
    padding: 70px 0;
    }
    
    .hero-content {
    padding: 50px 0;
    }
    
    .hero-btn-group {
    flex-direction: column;
    gap: 15px;
    }
    
    .hero-image-container {
    height: 300px;
    transform: perspective(1000px) rotateY(0);
    }
    
    .service-card {
    margin-bottom: 30px;
    }
    
    .process-step {
    margin-bottom: 40px;
    }
    
    .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
    }
    
    .portfolio-filter {
    white-space: nowrap;
    }
    
    .cta-buttons {
    flex-direction: column;
    align-items: center;
    }
    
    .footer-logo, .footer-about {
    text-align: center;
    }
    
    .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    }
    }
    
    @media (max-width: 575px) {
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1.1rem;
    }
    
    .section-title {
    font-size: 1.8rem;
    }
    
    .slogan-title {
    font-size: 1.8rem;
    }
    
    .slogan-text {
    font-size: 1rem;
    }
    
    .cta-title {
    font-size: 1.6rem;
    }
    
    .client-logo {
    width: calc(50% - 20px);
    }
    }
    