:root {
    --primary-color: rgb(115, 149, 179);
    --secondary-color: rgb(0, 0, 0);
    --accent-color: rgb(255, 255, 255);
    --dark-blue: #0F2027;
    --light-blue: rgb(115, 149, 179);
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, rgb(115, 149, 179) 0%, rgba(115, 149, 179, 0.8) 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(115, 149, 179, 0.5) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}


.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.8rem 0; 
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    min-height: 70px; 
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.6rem 0; 
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-height: 60px;
}


.navbar-brand {
    display: flex;
    align-items: center;
    height: 50px; 
    padding: 0;
}

.navbar-brand .logo {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: translateY(-2px);
}


.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 8px;
    padding: 8px 20px !important;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link.active {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 1rem;
    width: auto;
}

.navbar-nav .dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.navbar-nav .dropdown-divider {
    margin: 0.5rem 1rem;
    border-color: rgba(201, 169, 97, 0.2);
}


.navbar-toggler {
    border: none;
    padding: 0.4rem 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(201, 169, 97, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

.navbar-collapse {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 65px;
        padding: 0.6rem 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(201, 169, 97, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-brand .logo {
        height: 140px; 
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
        padding: 12px 20px !important;
        border-radius: 15px;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
    }

    .navbar-nav .dropdown-item {
        margin: 2px 0;
        background: rgba(201, 169, 97, 0.1);
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services {
    background: var(--gradient-secondary), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.services .section-title {
    color: white;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.92) 0%, rgba(233, 236, 239, 0.92) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process {
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.95) 0%, rgba(32, 58, 67, 0.95) 50%, rgba(44, 83, 100, 0.95) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    color: #f4f6f8;
}

.process .section-title {
    color: #fdfdfd;
}

.process .section-title::after {
    background: rgba(255, 255, 255, 0.8);
}

.process .service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 32, 39, 0.1);
    color: var(--text-dark);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.process .service-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.process .service-card h4 {
    color: var(--secondary-color);
}

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

.process .btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.process .btn-outline-light:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.35);
}

.contact {
    background: var(--gradient-secondary), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.contact .section-title {
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer {
    background: var(--dark-blue);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links a {
    color: var(--primary-color);
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-card {
        padding: 2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .about-card:first-child {
        margin-top: 0;
    }
    .hero {
        background-attachment: scroll;
    }
    .btn-primary,
    .btn-outline-light {
        margin-right: 0;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }
    .floating {
        display: none;
    }
    .service-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .service-card:first-child {
        margin-top: 0;
    }
    .testimonial-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card:first-child {
        margin-top: 0;
    }
    .contact-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .contact-info:first-child {
        margin-top: 0;
    }
    /* Bootstrap column spacing on mobile */
    .row > [class*="col-"] {
        margin-bottom: 0;
    }
    .row > [class*="col-"]:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .about-card:first-child {
        margin-top: 0;
    }
    .service-card {
        padding: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .service-card:first-child {
        margin-top: 0;
    }
    .process .service-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .process .service-card:first-child {
        margin-top: 0;
    }
    .testimonial-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card:first-child {
        margin-top: 0;
    }
    .contact-info {
        padding: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .contact-info:first-child {
        margin-top: 0;
    }
    .btn-primary,
    .btn-outline-light {
        padding: 12px 25px;
        font-size: 1rem;
    }
    /* Bootstrap column spacing on small mobile */
    .row > [class*="col-"] {
        margin-bottom: 0;
    }
    .row > [class*="col-"]:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    animation: float-particles 20s infinite linear;
}

@keyframes float-particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--white);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }
    .social-icons a {
        font-size: 1.5rem;
    }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100%;
}

.our-values, .our-clients {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Responsive Images System */
.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.responsive-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure all images from images folder are responsive */
img[src*="images/"] {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Enhanced responsive image styling for all local images */
img[src*="images/"]:not(.logo) {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

/* Mobile image adjustments */
@media (max-width: 768px) {
    img[src*="images/"]:not(.logo) {
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    img[src*="images/"]:not(.logo) {
        border-radius: 10px;
    }
}

/* Image Sizes */
.img-small {
    max-width: 300px;
}

.img-medium {
    max-width: 500px;
}

.img-large {
    max-width: 800px;
}

/* Image Layouts */
.img-grid {
    display: grid;
    gap: 20px;
    margin: 2rem 0;
}

.img-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.img-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.img-container:hover .img-caption {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .img-grid-2,
    .img-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .img-small {
        max-width: 100%;
    }
    
    .img-medium {
        max-width: 100%;
    }
    
    .img-large {
        max-width: 100%;
    }
    
    .responsive-img {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .img-grid {
        gap: 10px;
        margin: 1.5rem 0;
    }
}

/* Section Background Image Overlays */
.about::before,
.services::before,
.testimonials::before,
.contact::before,
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about > .container,
.services > .container,
.testimonials > .container,
.contact > .container,
.process > .container {
    position: relative;
    z-index: 1;
}

/* Decorative Image Classes */
.section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Image Banner Classes */
.img-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.section-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    display: block;
}

/* Background Image Utilities */
.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.bg-overlay > * {
    position: relative;
    z-index: 1;
}

/* Mobile Background Image Adjustments */
@media (max-width: 768px) {
    .hero,
    .about,
    .services,
    .testimonials,
    .contact,
    .process {
        background-attachment: scroll;
        background-size: cover;
    }
    
    .img-banner {
        height: 250px;
        margin: 1rem 0;
    }
    
    .section-img {
        max-width: 100%;
        margin: 1rem auto;
    }
    
    img[src*="images/"]:not(.logo) {
        height: auto !important;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .img-banner {
        height: 200px;
    }
    
    img[src*="images/"]:not(.logo) {
        max-height: 250px;
    }
}

/* Additional Mobile Breakpoints for Card Spacing */
@media (max-width: 480px) {
    .about-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .about-card:first-child {
        margin-top: 0;
    }
    .service-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .service-card:first-child {
        margin-top: 0;
    }
    .process .service-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .process .service-card:first-child {
        margin-top: 0;
    }
    .testimonial-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card:first-child {
        margin-top: 0;
    }
    .contact-info {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .contact-info:first-child {
        margin-top: 0;
    }
    .row > [class*="col-"]:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 320px) {
    .about-card {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .about-card:first-child {
        margin-top: 0;
    }
    .service-card {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .service-card:first-child {
        margin-top: 0;
    }
    .process .service-card {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .process .service-card:first-child {
        margin-top: 0;
    }
    .testimonial-card {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .testimonial-card:first-child {
        margin-top: 0;
    }
    .contact-info {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .contact-info:first-child {
        margin-top: 0;
    }
    .row > [class*="col-"]:not(:last-child) {
        margin-bottom: 1.25rem;
    }
}

/* Ensure process section cards have mobile spacing */
@media (max-width: 768px) {
    .process .service-card {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .process .service-card:first-child {
        margin-top: 0;
    }
}