/* 
 * Hayath Construction - Custom Styles
 * Color Scheme: Yellow (#F2B11E) and Black/Dark
 */

/* ==================== 
   CSS Variables 
   ==================== */
:root {
    --primary-color: #F2B11E;
    --primary-dark: #D99B0A;
    --secondary-color: #1A1A1A;
    --dark-color: #0D0D0D;
    --light-color: #FFFFFF;
    --gray-color: #6C757D;
    --light-gray: #F8F9FA;
    --text-color: #333333;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ==================== 
   Global Styles 
   ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== 
   Preloader 
   ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-logo {
    width: 200px;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

/* ==================== 
   Top Bar 
   ==================== */
.top-bar {
    background: var(--dark-color) !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar i {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ==================== 
   Navigation 
   ==================== */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.logo-img {
    height: auto;
    width: 200px;
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--light-color);
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-quote {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 10px 25px !important;
    border-radius: 0;
    transition: var(--transition);
}

.btn-quote:hover {
    background: transparent;
    color: var(--primary-color) !important;
}

/* ==================== 
   Hero Section 
   ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
                url('../images/groundbreak.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title .text-primary {
    color: var(--primary-color) !important;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-color);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    border-color: var(--light-color);
}

.hero-stats {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--light-color);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* ==================== 
   Section Common Styles 
   ==================== */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* ==================== 
   About Section 
   ==================== */
.about-section {
    background: var(--light-color);
    padding: 100px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px 35px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 40px;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

.feature-item span {
    font-weight: 500;
    color: var(--secondary-color);
}

/* ==================== 
   Services Section 
   ==================== */
.services-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.service-card {
    background: var(--light-color);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 15px;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ==================== 
   Why Choose Section 
   ==================== */
.why-choose-section {
    background: var(--light-color);
    padding: 100px 0;
}

.choose-features {
    margin-top: 40px;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.choose-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.choose-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.choose-content p {
    color: var(--gray-color);
    font-size: 15px;
    margin-bottom: 0;
}

.why-image {
    position: relative;
    margin-bottom: 30px;
}

.why-image img {
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.stats-row {
    display: flex;
    gap: 20px;
}

.stat-box {
    flex: 1;
    background: var(--secondary-color);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    background: var(--primary-color);
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: var(--transition);
}

.stat-box:hover h3 {
    color: var(--secondary-color);
}

.stat-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.stat-box:hover p {
    color: var(--secondary-color);
}

/* ==================== 
   Process Section 
   ==================== */
.process-section {
    background: var(--secondary-color);
    padding: 100px 0;
}

.process-section .section-title {
    color: var(--light-color);
}

.process-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(242, 177, 30, 0.1);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.process-card h4 {
    color: var(--light-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 0;
}

/* ==================== 
   Projects Section 
   ==================== */
.projects-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.project-card {
    background: var(--light-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-info {
    padding: 25px;
}

.project-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.project-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 0;
}

.project-info p i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ==================== 
   Testimonials Section 
   ==================== */
.testimonials-section {
    background: var(--light-color);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-color);
}

/* ==================== 
   Contact Section 
   ==================== */
.contact-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.contact-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-content a {
    color: var(--gray-color);
}

.contact-content a:hover {
    color: var(--primary-color);
}

.social-links-large {
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--light-color);
    margin-right: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-control::placeholder {
    color: #aaa;
}

select.form-control {
    height: 50px;
}

.map-wrapper {
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

/* Form Message Styles */
.alert {
    border-radius: 0;
    padding: 15px 20px;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ==================== 
   Footer Section 
   ==================== */
.footer-section {
    background: var(--secondary-color);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    
    margin-bottom: 25px;
	 height: auto;
    width: 200px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.footer-widget h4 {
    color: var(--light-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-bottom {
    background: var(--dark-color);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

.credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

.credits i {
    color: var(--primary-color);
}

/* ==================== 
   Back to Top Button 
   ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* ==================== 
   Button Styles 
   ==================== */
.btn {
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 14px 35px;
    font-size: 14px;
}

/* ==================== 
   Responsive Styles 
   ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -20px;
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    .navbar-collapse {
        background: var(--secondary-color);
        padding: 20px;
        margin-top: 15px;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0;
    }
    
    .dropdown-item {
        color: var(--light-color);
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:first-child {
        margin-right: 0 !important;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    .stat-box {
        flex: 1 1 100%;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats .row > div {
        margin-bottom: 20px;
    }
    
    .hero-stats .row > div:last-child {
        margin-bottom: 0;
    }
    
    .process-number {
        font-size: 48px;
    }
}

/* ==================== 
   Animation Classes 
   ==================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ==================== 
   Utility Classes 
   ==================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}
