/* ==========================================================================
   1. CSS Variables & Global Styles
   ========================================================================== */
   :root {
    --primary-color: #2a2d45; /* Dark blue/gray from logo */
    --secondary-color: #e94a3f; /* Red accent from logo */
    --light-color: #f5f5f5;
    --dark-color: #232333;
    --accent-color: #5c6bc0; /* Light blue accent */
    --gray-color: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.125);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 600;
}

/* ==========================================================================
   2. Header & Navigation Styles (Modern Header & Navigation - 2025 Edition)
   ========================================================================== */

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(42, 45, 69, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    z-index: 10;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.header.scrolled .navbar-brand img {
    height: 40px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-main);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
}
a {
    text-decoration: none;

}
a:hover {
    color: var(--secondary-color);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* Add these new styles to make dropdown work on click as well */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: var(--secondary-color);
    background: rgba(233, 74, 63, 0.05);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.2s ease;
    transform: translateY(-50%);
    opacity: 0;
}

.dropdown-menu a:hover::before {
    width: 8px;
    opacity: 1;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-link:focus {
    color: #e94a3f;
}

/* Existing button styles remain unchanged */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    color: var(--secondary-color);
}

.contact-btn:hover::before {
    width: 100%;
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for the contact button */
@media (max-width: 768px) {
  .contact-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .contact-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    display: block;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--secondary-color);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: white;
    position: absolute;
    right: 0;
    top: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dropdown-toggle.active {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0.5rem 0 1rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   3. Hero Section (Modern Hero Section - 2025 Edition)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1c2c 0%, #2a2d45 100%);
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #e94a3f;
    display: flex;
    flex-direction: column;
}

.hero-title .highlight {
    color: #fff;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, #fff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Buttons in Hero */
.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(233, 74, 63, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(233, 74, 63, 0.3);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual & Effects */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(92, 107, 192, 0.3) 0%, rgba(92, 107, 192, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 10s infinite alternate ease-in-out;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    height: auto;
    perspective: 1000px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: all 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hero-visual:hover .hero-image {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Floating Elements in Hero */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 5s infinite ease-in-out;
}

.html-element {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
    color: #e44d26;
}

.css-element {
    top: 60%;
    left: -5%;
    animation-delay: 1s;
    color: #264de4;
}

.js-element {
    top: 10%;
    right: -10%;
    animation-delay: 2s;
    color: #f7df1e;
}

.react-element {
    top: 70%;
    right: -5%;
    animation-delay: 3s;
    color: #61dafb;
}

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

/* Hero Particles & Scroll Indicator */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 3;
}

.scroll-indicator span {
    margin-bottom: 0.5rem;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

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

/* Responsive Hero */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-content {
        padding-right: 0;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   4. Section General Styles
   ========================================================================== */
section {
    /* padding: 100px 0; */
    position: relative;
}

.section-subtitle {
    font-family: var(--font-main);
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* ==========================================================================
   5. About Section Redesign Styles
   ========================================================================== */
.about-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-content-wrapper {
    flex: 1;
}

.about-features-wrapper {
    flex: 1;
}

.about-content .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content .section-title .highlight {
    color: #333;
    font-weight: 700;
    display: block;
}

.about-content .section-title .gradient-text {
    background: #e94a3f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-stats {
    display: flex;
    margin: 30px 0;
    gap: 20px;
}

.about-stats .stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4776E6;
    margin-bottom: 5px;
    background: #e94a3f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(71, 118, 230, 0.1) 0%, rgba(142, 84, 233, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
    z-index: 0;
}

.about-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image .main-img {
    width: 100%;
    height: auto;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.about-image .secondary-img {
    position: absolute;
    width: 60%;
    right: -20px;
    bottom: -20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.02) rotate(1deg);
}

.about-image-container:hover .about-image .secondary-img {
    transform: translateX(-10px) translateY(-10px) rotate(-5deg);
}

/* Floating Elements in About Section */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.about-element-1 {
    top: 20%;
    left: 10%;
    background: #4776E6;
    animation-delay: 0s;
}

.about-element-2 {
    top: 50%;
    right: 10%;
    background: #8E54E9;
    animation-delay: 1.5s;
}

.about-element-3 {
    bottom: 20%;
    left: 35%;
    background: #48a9f8;
    animation-delay: 0.7s;
}

/* Feature Grid in About Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 60px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e94a3f;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
}

.feature-item:hover .feature-icon i {
    transform: rotate(-10deg);
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}
/* Responsive adjustments for About Section */
@media (max-width: 991px) {
    .about-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .about-content-wrapper,
    .about-features-wrapper {
      width: 100%;
      text-align: center;
    }
    .about-content .section-title {
      font-size: 2rem;
    }
    .about-content .lead {
      font-size: 1.1rem;
    }
    .about-stats {
      flex-direction: column;
      gap: 20px;
    }
    .about-stats .stat-item {
      margin: 0 auto;
      max-width: 300px;
    }
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .about-image-container {
      margin-top: 20px;
    }
  }

  @media (max-width: 576px) {
    .about-content .section-title {
      font-size: 1.8rem;
    }
    .about-content .lead {
      font-size: 1rem;
    }
    .about-stats .stat-number {
      font-size: 1.5rem;
    }
    .about-stats .stat-label {
      font-size: 0.8rem;
    }
    .feature-grid {
      grid-template-columns: 1fr;
    }
    .about-image {
      transform: none;
    }
    .about-image .secondary-img {
      width: 80%;
      right: 0;
      bottom: 0;
      border: 3px solid white;
    }
  }

/* ==========================================================================
   6. Services Section Redesign Styles
   ========================================================================== */
.services-section {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    background-color: #f8f9fa;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.services-section .section-title {
    margin-bottom: 20px;
}

.services-section .section-title .highlight {
    color: #4B5563;
    font-weight: 400;
    display: block;
}

.services-section .section-title .gradient-text {
    background: linear-gradient(90deg, #e94a3f 0%, #e94a3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services-cards {
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.service-card-inner {
    position: relative;
    z-index: 2;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: #e94a3f;
    font-size: 28px;
    transition: all 0.4s ease;
    transform: rotate(0deg);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    color: white;
    transform: rotate(10deg);
}

.service-card-icon i {
    transition: all 0.4s ease;
    transform: scale(1);
}

.service-card:hover .service-card-icon i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #6366F1;
}

.service-card p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #4B5563;
    transition: all 0.3s ease;
}

.service-features li i {
    color: #e94a3f;
    margin-right: 10px;
    font-size: 14px;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: #e94a3f;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.service-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    left: 0;
    top: 0;
    border-radius: 30px;
    z-index: -1;
    transition: width 0.3s ease;
}

.service-btn:hover {
    color: white;
}

.service-btn:hover::after {
    width: 100%;
}

/* Service Card Shape & Floating Elements */
.service-card-shape {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    transition: all 0.6s ease;
}

.service-card:hover .service-card-shape {
    transform: scale(1.5) rotate(45deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.service-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.service-element {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #6366F1;
    opacity: 0.1;
    transition: all 0.8s ease;
}

.service-card:hover .service-element {
    opacity: 0.3;
}

.service-card:hover .service-element:nth-child(1) {
    top: 20%;
    left: 20%;
    background: #6366F1;
    animation-delay: 0s;
}

.service-card:hover .service-element:nth-child(2) {
    top: 60%;
    left: 40%;
    background: #8B5CF6;
    animation-delay: 0.2s;
}

.service-card:hover .service-element:nth-child(3) {
    bottom: 10%;
    right: 20%;
    background: #EC4899;
    animation-delay: 0.4s;
}
/* ======================================================
   NEW PROCESS SECTION - TIMELINE STYLE
   ====================================================== */
   .process-section {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fc;
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    transform: translateX(-50%);
  }

  /* Process Step Container */
  .process-step {
    position: relative;
    width: 50%;
    padding: 20px 30px;
    box-sizing: border-box;
  }

  /* Left-side steps */
  .process-step.left {
    left: 0;
    text-align: right;
  }

  /* Right-side steps */
  .process-step.right {
    left: 50%;
    text-align: left;
  }

  /* Content Card */
  .step-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .step-content:hover {
    transform: translateY(-5px);
  }

  /* Circle Pointer on Timeline */
  .process-step::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
  }

  .process-step.left::before {
    right: -12px;
  }

  .process-step.right::before {
    left: -12px;
  }

  /* Step Icon */
  .step-icon {
    background: var(--secondary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }

  .step-icon:hover {
    transform: scale(1.1);
  }

  /* Step Info */
  .step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary-color);
    background-color: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }

  /* Process Footer */
  .process-footer {
    margin-top: 50px;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .process-step {
      width: 100%;
      left: 0 !important;
      text-align: left;
      padding: 15px 20px;
      margin-bottom: 30px;
    }
    .timeline-line {
      left: 20px;
      width: 3px;
    }
    .process-step::before {
      left: -12px;
      right: auto;
    }
  }

  @media (max-width: 576px) {
    .process-timeline {
      padding: 20px 10px;
    }
    .step-title {
      font-size: 16px;
    }
    .step-description {
      font-size: 14px;
    }
  }


/* ==========================================================================
   8. Team Section
   ========================================================================== */
.team-section {
    background-color: white;
    padding-bottom: 100px;
    position: relative;
}

.team-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 30px;
    align-items: center;
}

.team-image-container {
    position: relative;
}

.team-image-hexagon {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    overflow: hidden;
    background-color: #b0bd0345;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.team-image-container:hover .team-image-hexagon {
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.team-image-hexagon img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.team-image-container:hover .team-image-hexagon img {
    opacity: 1;
    transform: scale(1.05);
}

.team-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -15px;
    left: -15px;
    z-index: -1;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.team-content-container {
    padding-left: 30px;
}

.team-content {
    margin-bottom: 40px;
}

.expertise-meter {
    margin-bottom: 20px;
}

.expertise-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.expertise-bar {
    height: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.expertise-fill {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
    position: relative;
    transition: width 1.5s ease-in-out;
}

.expertise-fill span {
    position: absolute;
    right: 10px;
    top: -2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trades-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trades-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 62, 80, 0.05);
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.trades-item:hover .trades-icon {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.trades-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.trades-item:hover .trades-icon i {
    color: white;
}

.trades-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive adjustments for Team Section */
@media (max-width: 1199px) {
    .about-wrapper,
    .team-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-box {
        grid-template-columns: 1fr !important;
    }

    .service-box.residential .service-content,
    .service-box.carpentry .service-image,
    .service-box.residential .service-image,
    .service-box.carpentry .service-content {
        order: unset;
    }

    .service-image {
        height: 300px;
    }

    .trades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .team-content-container {
        padding-left: 0;
    }
}

/* ==========================================================================
   9. Contact CTA Section
   ========================================================================== */
.contact-cta {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-contacts a {
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-contacts a:hover {
    color: var(--secondary-color);
}

.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   10. Footer Styles
   ========================================================================== */
footer.footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

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

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==========================================================================
   11. Technologies & Skills Section
   ========================================================================== */
.technologies-section {
    background-color: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.tech-header {
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.tech-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-color);
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.tech-item:hover .tech-icon i {
    color: white;
}

.tech-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.skill-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(233, 74, 63, 0.1);
    border-radius: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.skill-item:hover .skill-icon {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    border-radius: 50%;
}

.skill-icon i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.skill-item:hover .skill-icon i {
    color: white;
}

.skill-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive styles for Technologies & Skills */
@media (max-width: 1199px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
    }

    .tech-icon i {
        font-size: 1.8rem;
    }
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
   .why-choose-section {
    padding: 20px 0;
    background-color: #ffffff;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.why-choose-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-choose-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive for "Why Choose Us" */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
/* ======================================================
   CREATIVE "WHY CHOOSE US" SECTION
   ====================================================== */
   .why-choose-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden; /* Allows background shape to remain behind content */
}

/* Background Shape (diagonal/angled) */
.why-choose-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Example gradient using two brand colors or any palette */
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    /* Diagonal shape using clip-path */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    /* Add a slight transparency or customize as desired */
    opacity: 0.15;
}

.why-choose-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Grid of items */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-item {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 40px 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

/* Subtle tilt/hover effect */
.why-choose-item:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Optional floating background circles inside each card */
.why-choose-item::before,
.why-choose-item::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.05;
    transition: all 0.5s ease;
}

.why-choose-item::before {
    top: -30px;
    right: -30px;
    width: 70px;
    height: 70px;
}

.why-choose-item::after {
    bottom: -40px;
    left: -20px;
    width: 100px;
    height: 100px;
}

.why-choose-item:hover::before,
.why-choose-item:hover::after {
    opacity: 0.08;
    transform: scale(1.2);
}

/* Icon styles */
.choose-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.why-choose-item:hover .choose-icon {
    transform: rotate(10deg);
}

/* Title and paragraph in each item */
.why-choose-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.why-choose-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-item {
        margin: 0 auto;
        max-width: 400px;
    }
}
/* ======================================================
   CREATIVE BLOG SECTION STYLES
   ====================================================== */
   .blog-section {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fa;
    overflow: hidden; /* So background shape stays behind content */
}

/* Decorative Background Shape for the Blog Section */
.blog-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
      135deg,
      var(--accent-color) 10%,
      var(--secondary-color) 80%
    );
    opacity: 0.07;
    /* Tilt the shape slightly and push out of container bounds */
    transform: rotate(-6deg) translate(0, -10%);
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Individual Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

/* Blog Image Container */
.blog-image {
    position: relative;
    overflow: hidden;
    /* Rounded top corners */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Image Hover Zoom */
.blog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Optional Category Label Over the Image */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.blog-card:hover .blog-category {
    background: var(--primary-color);
}

/* Blog Text Content */
.blog-content {
    padding: 20px 25px 25px;
    /* Slight offset from the image */
    margin-top: -5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content h3 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* "Read More" Link */
.blog-readmore {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-readmore i {
    margin-left: 5px;
}

.blog-readmore:hover {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ======================================================
   Testimonials Section Styles
   ====================================================== */
   .testimonials-section {
    position: relative;
    padding: 20px 0;
    background-color: #fff;
    overflow: hidden;
  }

  .testimonials-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    opacity: 0.1;
    z-index: -1;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  .testimonial-quote {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
  }

  .testimonial-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
  }

  .client-info {
    text-align: left;
  }

  .client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }

  .client-position {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Service Details Section */
  .service-details img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #e94a3f, var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    background: #e94a3f;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
    z-index: 1;
}

.timeline-item.left::after {
    right: -12.5px;
}

.timeline-item.right::after {
    left: -12.5px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.timeline-content i {
    font-size: 2rem;
    color: #e94a3f;
    margin-bottom: 15px;
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
        padding-left: 70px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 15px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
    }
}

/* Technologies Section Enhancement */
.technologies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    background: var(--background-light);
}

.technologies img {
    max-width: 100px;
    filter: grayscale(70%);
    transition: all 0.4s ease;
}

.technologies img:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
}
/* Portfolio Section */
.portfolio .card {
    border: none;
    transition: transform 0.3s ease;
}

.portfolio .card:hover {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials .testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

/* Call to Action Section */
.cta {
    background: var(--primary-color);
    color: #fff;
}

.cta .btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
}

/* Related Services (Unchanged) */
.related-services .card {
    border: none;
    transition: transform 0.3s ease;
}

.related-services .card:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -10px;
        border-right: 10px solid #fff;
        border-left: 0;
    }
}
/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Contact Information Styles */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method .details {
    flex-grow: 1;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-method p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(233, 74, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(233, 74, 63, 0.1);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.toggle-icon::before {
    width: 2px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.toggle-icon::after {
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .toggle-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 30px;
    }
}
/* Portfolio Gallery Styles */
.portfolio-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 45, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.portfolio-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.portfolio-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-links a:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}
/* Blog Details Styles */
.blog-hero-section {
    position: relative;
    padding: 120px 0 60px;
}

.blog-category {
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-meta {
    font-size: 0.95rem;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
}

/* Blog Content Styles */
.blog-content-section {
    padding: 80px 0;
    background: #fff;
}

.blog-featured-image {
    margin: -150px 0 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.blog-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-article h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.blog-article .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
}

/* Info Box Styles */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

/* Code Block Styles */
.code-block {
    background: #1a1c2c;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.code-block pre {
    margin: 0;
    color: #fff;
}

/* Figure Styles */
.blog-figure {
    margin: 40px 0;
}

.blog-figure img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-figure figcaption {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* Author Bio */
.author-bio {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 50px 0;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Share Buttons */
.share-buttons {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.social-share {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
}

.related-post-card .post-meta {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-hero-section {
        padding: 100px 0 40px;
    }

    .blog-featured-image {
        margin: -100px 0 30px;
    }

    .blog-article {
        font-size: 1rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin: 0 0 20px;
    }
}

/* ==========================================================================
   COOKIE BANNER STYLES
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 45, 69, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h4 {
    margin: 0;
    color: var(--primary-color);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 25px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

/* ==========================================================================
   PAGE HERO SECTION STYLES
   ========================================================================== */
.page-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   POLICY CONTENT SECTION STYLES
   ========================================================================== */
.policy-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */
.why-work-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

.openings-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
}

.job-type {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-details {
    margin-bottom: 25px;
}

.job-details p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details i {
    color: var(--secondary-color);
    width: 16px;
}

.job-description h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.job-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-description li {
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.apply-btn {
    width: 100%;
    margin-top: 20px;
}

.application-section {
    padding: 80px 0;
    background: white;
}

.application-form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.application-form-wrapper h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.application-form-wrapper .lead {
    text-align: center;
    margin-bottom: 40px;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.application-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.application-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(233, 74, 63, 0.1);
}

.application-form .form-text {
    font-size: 0.85rem;
}

.culture-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.culture-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.culture-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.culture-card p {
    color: #666;
    margin: 0;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 30px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert ul {
    margin-bottom: 0;
}

.alert li {
    margin-bottom: 5px;
}

.alert li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.custom {
    border-color: var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.pricing-footer {
    text-align: center;
}

/* Additional Services Section */
.additional-services-section {
    padding: 80px 0;
    background: white;
}

.service-addon {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-addon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-addon h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.addon-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-addon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-addon li {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.service-addon li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Pricing FAQ Section */
.pricing-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.pricing-cta-section h2 {
    margin-bottom: 20px;
}

.pricing-cta-section .lead {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for Pricing page */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .plan-price .amount {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive adjustments for Careers page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .application-form-wrapper {
        padding: 30px 20px;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
    }

    .job-type {
        align-self: flex-start;
    }
}

/* Add/update these styles to prevent horizontal scrolling */

/* Fix for general overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fix for blog background shape overflow */
.blog-bg-shape {
    width: 100%; /* Change from 120% */
    height: 100%; /* Change from 120% */
    transform: rotate(-6deg) translate(0, -10%); /* Adjust transform */
}

/* Fix for service section decorative shapes */
.services-section::before {
    right: 0; /* Change from -100px */
}

.services-section::after {
    left: 0; /* Change from -100px */
}

/* Fix for any potential container overflow */
.container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Fix for mobile menu */
.mobile-menu {
    max-width: 100%;
    width: 300px;
}
button#cookie-settings {
    color: white;
}

button#cookie-decline {
    color: white;
}
