@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-color: #E03B04;
    --primary-dark: #c53204;
    --primary-white: #ffffff;
    --primary-light: #ff4d1a;
    --secondary-color: #6c757d;
    --secondary-dark: #495057;
    --secondary-light: #adb5bd;
    --accent-color: #E03B04;
    --text-color: #333333;
    --text-light: #666666;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-color: #dee2e6;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(224, 59, 4, 0.1);
    --shadow-hover: 0 4px 20px rgba(224, 59, 4, 0.2);
}

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

/* Enhanced color accessibility and contrast */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced button styles with new color scheme */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

/* Top Info Bar */
.header__top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.header__top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__contact-info {
    display: flex;
    gap: 20px;
}

.header__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__contact-icon {
    color: #fff;
    font-size: 16px;
}

.header__social-icons {
    display: flex;
    gap: 15px;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-white);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
/*
.header__social-link:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}*/

.header__social-icon {
    font-size: 14px;
	color: #b30000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header__top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header__contact-info {
        gap: 15px;
    }
    
    .header__social-icons {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .header__contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header__contact-item {
        justify-content: center;
    }
}

/* Main Header Styles */
.header__main {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo Styles */
.header__logo {
    flex-shrink: 0;
}

.header__logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.header__logo-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.header__logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
	display: inline-block;
}

.header__logo-text {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu Styles */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__nav-link:hover {
    color: var(--secondary-color);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

/* Active state for navigation */
.header__nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.header__nav-link.active::after {
    width: 100%;
}

/* Submenu Styles */
.header__nav-item--has-submenu {
    position: relative;
}

.header__nav-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.header__nav-item--has-submenu:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__nav-item--has-submenu:hover .header__nav-arrow {
    transform: rotate(180deg);
}

.header__submenu-item {
    list-style: none;
}

.header__submenu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header__submenu-link:hover {
    color: var(--primary-color);
    background: rgba(255, 69, 0, 0.05);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
}

/* Responsive adjustments for nav links */
@media (max-width: 1200px) {
    .header__nav-list {
        gap: 30px;
    }
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.header__mobile-toggle-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__mobile-toggle:hover .header__mobile-toggle-line {
    background-color: var(--secondary-color);
}

/* Mobile Menu Toggle Animation */
.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle--active .header__mobile-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design for Navbar */
@media (max-width: 992px) {
    .header__nav {
        display: none;
    }
    
    .header__mobile-toggle {
        display: flex;
    }
    
    .header__navbar {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header__main {
        padding: 15px 0;
    }
    
    .header__logo-img {
        width: 40px;
        height: 40px;
    }
    
    .header__logo-text {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .header__logo-link {
        gap: 10px;
    }
    
    .header__logo-text {
        font-size: 18px;
    }
    
    .header__navbar {
        gap: 15px;
    }
}

/* Ensure Bootstrap container works in hero slider */
.hero-slider .container {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .row {
    width: 100%;
    margin: 0;
}

.hero-slider .col-lg-6,
.hero-slider .col-md-8,
.hero-slider .col-sm-10 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent Animate.css from interfering with hero slider */
.hero-slider *,
.hero-slider__slide *,
.hero-slider__content *,
.hero-slider__text * {
    animation: none !important;
    transform: none !important;
}

.hero-slider__slide {
    animation: none !important;
    transform: none !important;
}

.hero-slider__content {
    animation: none !important;
    transform: none !important;
}

.hero-slider__text {
    animation: none !important;
    transform: none !important;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #E03B04);
}

.hero-slider__container {
    height: 100%;
}

.hero-slider__slide {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-slider__slide .hero-slider__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform: none !important;
    animation: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slider__slide.slick-active .hero-slider__img {
    transform: scale(1);
}

.hero-slider__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__text {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 35px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: none !important;
    animation: none !important;
    width: 100%;
    max-width: 600px;
}

.hero-slider__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.hero-slider__slide.slick-active .hero-slider__text::before {
    left: 100%;
}

.hero-slider__heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa, #e9ecef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
}

.hero-slider__heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(224, 59, 4, 0.5);
}

.hero-slider__subheading {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slider__button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-slider__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-slider__button:hover::before {
    left: 100%;
}

.hero-slider__button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.6);
    color: var(--white);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Slick Slider Custom Styles */
.hero-slider .slick-dots {
    bottom: 30px;
    z-index: 3;
}

.hero-slider .slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-color);
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 24px;
    color: var(--white);
    opacity: 0.8;
}

/* Responsive Design for Hero Slider */
@media (max-width: 1200px) {
    .hero-slider__heading {
        font-size: 2.5rem;
    }
    
    .hero-slider__subheading {
        font-size: 1.1rem;
    }
    
    .hero-slider__text {
        padding: 35px 30px;
        max-width: 550px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 75vh;
        min-height: 550px;
    }
    
    .hero-slider__slide {
        height: 75vh;
        min-height: 550px;
    }
    
    .hero-slider__heading {
        font-size: 2.4rem;
        margin-bottom: 18px;
    }
    
    .hero-slider__subheading {
        font-size: 1rem;
        margin-bottom: 22px;
    }
    
    .hero-slider__button {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
    
    .hero-slider__text {
        padding: 35px 28px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider__slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider__heading {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-slider__subheading {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-slider__button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-slider__text {
        padding: 30px 22px;
        max-width: 450px;
    }
    
    .hero-slider__content {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-slider__slide {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-slider__heading {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .hero-slider__subheading {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .hero-slider__button {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .hero-slider__text {
        padding: 25px 18px;
        max-width: 400px;
    }
    
    .hero-slider__content {
        padding: 0 10px;
    }
}

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

.about-section__image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-section__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-section__image:hover .about-section__img {
    transform: scale(1.05);
}

.about-section__content {
    padding: 0 30px;
}

.about-section__heading {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.about-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.about-section__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
    opacity: 0.9;
}

.about-section__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-section__button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-top: 10px;
}

.about-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section__heading {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
    
    .about-section__subheading {
        font-size: 1.2rem;
    }
    
    .about-section__content {
        padding: 0 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section__heading {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .about-section__subheading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .about-section__text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .about-section__button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-section__content {
        padding: 0 15px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section__heading {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .about-section__subheading {
        font-size: 1rem;
    }
    
    .about-section__text {
        font-size: 0.95rem;
    }
    
    .about-section__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-section__content {
        padding: 0 10px;
        margin-top: 25px;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    background-color: var(--white);
}

.what-we-do-section__header {
    margin-bottom: 60px;
}

.what-we-do-section__heading {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.what-we-do-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.what-we-do-section__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.what-we-do-section__content {
    padding: 0 30px;
}

.what-we-do-section__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.what-we-do-section__products {
    margin: 40px 0;
}

.what-we-do-section__product-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.what-we-do-section__product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
    background-color: var(--white);
}

.what-we-do-section__product-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.what-we-do-section__product-item:hover .what-we-do-section__product-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.what-we-do-section__product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    transition: all 0.3s ease;
}

.what-we-do-section__product-item:hover .what-we-do-section__product-title {
    color: var(--primary-color);
}

.what-we-do-section__button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(224, 59, 4, 0.3);
    margin-top: 20px;
}

.what-we-do-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 59, 4, 0.4);
    color: var(--white);
    text-decoration: none;
}

.what-we-do-section__image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.what-we-do-section__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.what-we-do-section__image:hover .what-we-do-section__img {
    transform: scale(1.05);
}

.what-we-do-section__features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.what-we-do-section__feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.what-we-do-section__feature:last-child {
    margin-bottom: 0;
}

.what-we-do-section__feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsive Design for What We Do Section */
@media (max-width: 992px) {
    .what-we-do-section {
        padding: 80px 0;
    }
    
    .what-we-do-section__heading {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .what-we-do-section__subheading {
        font-size: 1.2rem;
    }
    
    .what-we-do-section__content {
        padding: 0 20px;
        margin-top: 40px;
    }
    
    .what-we-do-section__product-item {
        padding: 15px;
    }
    
    .what-we-do-section__product-icon {
        font-size: 1.8rem;
        margin-right: 12px;
    }
    
    .what-we-do-section__product-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 0;
    }
    
    .what-we-do-section__heading {
        font-size: 2.1rem;
        margin-bottom: 15px;
    }
    
    .what-we-do-section__subheading {
        font-size: 1.1rem;
    }
    
    .what-we-do-section__text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .what-we-do-section__button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .what-we-do-section__content {
        padding: 0 15px;
        margin-top: 30px;
    }
    
    .what-we-do-section__product-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .what-we-do-section__product-icon {
        font-size: 1.6rem;
        margin-right: 10px;
    }
    
    .what-we-do-section__product-title {
        font-size: 1rem;
    }
    
    .what-we-do-section__features {
        position: static;
        margin-top: 20px;
        background: var(--light-gray);
    }
}

@media (max-width: 576px) {
    .what-we-do-section {
        padding: 50px 0;
    }
    
    .what-we-do-section__heading {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .what-we-do-section__subheading {
        font-size: 1rem;
    }
    
    .what-we-do-section__text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .what-we-do-section__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .what-we-do-section__content {
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .what-we-do-section__product-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .what-we-do-section__product-icon {
        font-size: 1.4rem;
        margin-right: 8px;
    }
    
    .what-we-do-section__product-title {
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e3f2fd" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e3f2fd" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e3f2fd" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e3f2fd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.why-choose-us-section__header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-us-section__heading {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.why-choose-us-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.why-choose-us-section__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.why-choose-us-section__benefits {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-us-section__benefits .row.no-gutters > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.why-choose-us-section__benefits .row.no-gutters > [class*="col-"]:first-child {
    padding-left: 0;
}

.why-choose-us-section__benefits .row.no-gutters > [class*="col-"]:last-child {
    padding-right: 0;
}

.why-choose-us-section__benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section__benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: height 0.3s ease;
}

.why-choose-us-section__benefit-item:hover::before {
    height: 8px;
}

.why-choose-us-section__benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.why-choose-us-section__benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(224, 59, 4, 0.3);
}

.why-choose-us-section__benefit-item:hover .why-choose-us-section__benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(224, 59, 4, 0.4);
}

.why-choose-us-section__benefit-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.why-choose-us-section__benefit-item:hover .why-choose-us-section__benefit-icon i {
    transform: scale(1.1);
}

.why-choose-us-section__benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-choose-us-section__benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.why-choose-us-section__benefit-item:hover .why-choose-us-section__benefit-title {
    color: var(--secondary-color);
}

.why-choose-us-section__benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    flex: 1;
}

.why-choose-us-section__button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.why-choose-us-section__button:hover::before {
    left: 100%;
}

.why-choose-us-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 1200px) {
    .why-choose-us-section__benefit-item {
        padding: 25px 15px;
    }
    
    .why-choose-us-section__benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-us-section__benefit-icon i {
        font-size: 1.8rem;
    }
    
    .why-choose-us-section__benefit-title {
        font-size: 1.1rem;
    }
    
    .why-choose-us-section__benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .why-choose-us-section {
        padding: 80px 0;
    }
    
    .why-choose-us-section__heading {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__subheading {
        font-size: 1.2rem;
    }
    
    .why-choose-us-section__benefit-item {
        padding: 25px 20px;
    }
    
    .why-choose-us-section__benefit-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__benefit-icon i {
        font-size: 1.6rem;
    }
    
    .why-choose-us-section__benefit-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .why-choose-us-section__benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-section__heading {
        font-size: 2.1rem;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__subheading {
        font-size: 1.1rem;
    }
    
    .why-choose-us-section__benefit-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .why-choose-us-section__benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__benefit-icon i {
        font-size: 1.4rem;
    }
    
    .why-choose-us-section__benefit-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .why-choose-us-section__benefit-description {
        font-size: 0.85rem;
    }
    
    .why-choose-us-section__button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us-section {
        padding: 50px 0;
    }
    
    .why-choose-us-section__heading {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__subheading {
        font-size: 1rem;
    }
    
    .why-choose-us-section__benefit-item {
        padding: 20px 12px;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section__benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .why-choose-us-section__benefit-icon i {
        font-size: 1.3rem;
    }
    
    .why-choose-us-section__benefit-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .why-choose-us-section__benefit-description {
        font-size: 0.8rem;
    }
    
    .why-choose-us-section__button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-section__header {
    margin-bottom: 60px;
}

.blog-section__heading {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.blog-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.blog-section__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card__content {
    padding: 25px;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-card__date {
    color: var(--text-color);
    opacity: 0.7;
}

.blog-card__category {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
    color: var(--secondary-color);
}

.blog-card__excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.blog-card__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card__link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-card__link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.blog-card__link:hover::after {
    transform: translateX(5px);
}

/* Blog Section Button */
.blog-section__button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-top: 20px;
}

.blog-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design for Blog Section */
@media (max-width: 992px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-section__heading {
        font-size: 2.4rem;
    }
    
    .blog-section__subheading {
        font-size: 1.2rem;
    }
    
    .blog-section__header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section__heading {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .blog-section__subheading {
        font-size: 1.1rem;
    }
    
    .blog-section__header {
        margin-bottom: 40px;
    }
    
    .blog-card__content {
        padding: 20px;
    }
    
    .blog-card__title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .blog-card__excerpt {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-section__heading {
        font-size: 2rem;
    }
    
    .blog-section__subheading {
        font-size: 1rem;
    }
    
    .blog-section__header {
        margin-bottom: 30px;
    }
    
    .blog-card__content {
        padding: 18px;
    }
    
    .blog-card__title {
        font-size: 1.1rem;
    }
    
    .blog-card__excerpt {
        font-size: 0.9rem;
    }
    
    .blog-section__button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #fafafa;
    color: var(--text-color);
}

.gallery-section__header {
    margin-bottom: 60px;
}

.gallery-section__heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.gallery-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.2);
}

.gallery-section__subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__content {
    transform: translateY(0);
}

.gallery-item__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-item__description {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery Section Button */
.gallery-section__button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-top: 20px;
}

.gallery-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design for Gallery Section */
@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-section__heading {
        font-size: 2.4rem;
    }
    
    .gallery-section__subheading {
        font-size: 1.2rem;
    }
    
    .gallery-section__header {
        margin-bottom: 50px;
    }
    
    .gallery-item__img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section__heading {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .gallery-section__subheading {
        font-size: 1.1rem;
    }
    
    .gallery-section__header {
        margin-bottom: 40px;
    }
    
    .gallery-item__img {
        height: 200px;
    }
    
    .gallery-item__overlay {
        padding: 15px;
    }
    
    .gallery-item__title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .gallery-item__description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section__heading {
        font-size: 2rem;
    }
    
    .gallery-section__subheading {
        font-size: 1rem;
    }
    
    .gallery-section__header {
        margin-bottom: 30px;
    }
    
    .gallery-item__img {
        height: 180px;
    }
    
    .gallery-item__overlay {
        padding: 12px;
    }
    
    .gallery-item__title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .gallery-item__description {
        font-size: 0.8rem;
    }
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer__section {
    margin-bottom: 30px;
}

/* Footer Logo */
.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer__logo-img {
    width: 220px;
    height: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.footer__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer About */
.footer__about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Footer Headings */
.footer__heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Footer Links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer__link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.footer__link:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer__link:hover::before {
    opacity: 1;
}

/* Footer Contact */
.footer__contact {
    margin-bottom: 30px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer__contact-icon {
    font-size: 1.2rem;
    color: #fff;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.footer__contact-info {
    flex: 1;
}

.footer__contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Footer Social */
.footer__social-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__social-icons {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer__social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 59, 4, 0.4);
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section - New Modern Design */
.contact-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #b30000  0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Contact Header */
.contact-header {
    margin-bottom: 40px;
}

.contact-header__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.contact-header__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.contact-header__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

/* Contact Details */
.contact-details {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details__header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details__title {
    font-size: 1.8rem;
    font-weight: 700;
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.contact-details__description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

.contact-details__list {
    margin-bottom: 30px;
    flex: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-detail-item:hover::before {
    left: 100%;
}

.contact-detail-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-detail-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-item__icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.contact-detail-item__icon i {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-detail-item__content {
    flex: 1;
}

.contact-detail-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item__text {
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-details__social {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.contact-details__social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: var(--white);
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.photo-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

/* Gallery Header */
.gallery-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}



/* Gallery Grid */
.gallery-grid {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.gallery-item__info {
    padding: 20px;
}

.gallery-item__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.gallery-item__description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
}

/* Gallery Pagination */
.gallery-pagination {
    position: relative;
    z-index: 1;
}

.pagination {
    gap: 10px;
}

.page-item .page-link {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: var(--text-color);
    padding: 12px 18px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 45px;
    text-align: center;
}

.page-item .page-link:hover,
.page-item.active .page-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item__image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .photo-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item__image {
        height: 180px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox__overlay {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox__content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.lightbox__close:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.lightbox__image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lightbox__title {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-card__title {
    font-size: 2.4rem;
    font-weight: 700;
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.contact-form-card__subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-form-card__form {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-textarea::placeholder {
    color: rgba(102, 126, 234, 0.5);
    font-style: italic;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-top: auto;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.submit-btn__text {
    font-weight: 700;
}

.submit-btn__icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-btn__icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header__title {
        font-size: 3rem;
    }
    
    .contact-details,
    .contact-form-card {
        padding: 35px;
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header__title {
        font-size: 2.5rem;
    }
    
    .contact-header__subtitle {
        font-size: 1.1rem;
    }
    
    .contact-details,
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-detail-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-detail-item__icon {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    
    .contact-detail-item__icon i {
        font-size: 1.2rem;
    }
    
    .contact-details__social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(224, 59, 4, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 59, 4, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer__section {
        text-align: center;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__social-icons {
        justify-content: center;
    }
    
    .footer__bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0 0;
    }
    
    .footer__logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer__logo-text {
        font-size: 1.3rem;
    }
    
    .footer__heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer__contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .footer__social-icons {
        gap: 12px;
    }
    
    .footer__social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer__logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__logo-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* About Page Section */
.about-page-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

/* About Page Image */
.about-page__image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-page__image:hover {
    transform: translateY(-10px);
}

.about-page__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-page__image:hover .about-page__img {
    transform: scale(1.05);
}

/* Image Overlay with Experience Badge */
.about-page__image-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.experience__years {
    text-align: center;
}

.years__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.years__text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Page Content */
.about-page__content {
    padding-left: 50px;
}

.about-page__badge {
    margin-bottom: 25px;
}

.badge__text {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(224, 59, 4, 0.3);
}

.about-page__heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
}

.about-page__heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.about-page__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Features Section */
.about-page__features {
    margin: 35px 0;
}

.feature__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature__item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature__icon {
    margin-right: 20px;
    margin-top: 5px;
}

.feature__icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature__description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Action Buttons */
.about-page__actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-page__button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-page__button.primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(224, 59, 4, 0.4);
}

.about-page__button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 59, 4, 0.5);
    color: var(--white);
}

.about-page__button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.about-page__button.secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 59, 4, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-page-section {
        padding: 80px 0;
    }
    
    .about-page__content {
        padding-left: 0;
        padding-top: 40px;
        text-align: center;
    }
    
    .about-page__heading {
        font-size: 2.4rem;
    }
    
    .about-page__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-page__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-page__image-overlay {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .years__number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 60px 0;
    }
    
    .about-page__heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-page__text {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .feature__item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feature__title {
        font-size: 1.1rem;
    }
    
    .about-page__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-page__button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .about-page__img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-page-section {
        padding: 50px 0;
    }
    
    .about-page__heading {
        font-size: 1.8rem;
    }
    
    .about-page__text {
        font-size: 0.95rem;
    }
    
    .feature__item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .feature__icon {
        margin-right: 15px;
    }
    
    .feature__icon i {
        font-size: 1.3rem;
    }
    
    .about-page__img {
        height: 350px;
    }
    
    .about-page__image-overlay {
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .years__number {
        font-size: 1.8rem;
    }
    
    .years__text {
        font-size: 0.8rem;
    }
}

/* Breadcrumbs Section */
.breadcrumbs-section {
    background: #b30000 !important;
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.breadcrumbs-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 15px;
    color: rgba(255, 255, 255, 0.8);
    content: "/";
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.breadcrumb-item:hover:not(:last-child)::after {
    transform: translateX(5px) scale(1.2);
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.breadcrumb__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb__link:hover {
    color: #feca57;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb__current {
    color: #ffffff;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs-section {
        padding: 20px 0;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 15px;
        font-size: 1.1rem;
    }
    
    .breadcrumb__link,
    .breadcrumb__current {
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .breadcrumbs-section {
        padding: 18px 0;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 12px;
        font-size: 1rem;
    }
    
    .breadcrumb__link,
    .breadcrumb__current {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
}

/* Gallery Pages */
.gallery-page {
    width: 100%;
}

.page-item.disabled .page-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.3);
    transform: none;
    box-shadow: none;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    transform: scale(1.1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Lightbox Animation */
.lightbox-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.lightbox-content.show {
    animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Video Gallery Section Styles */
.video-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.video-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

/* Video Grid */
.video-grid {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* Video Pages */
.video-page {
    width: 100%;
}

/* Video Items */
.video-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-item:hover .video-thumbnail__image {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-item:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}



/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Video Modal Animation */
.video-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.video-modal-content.show {
    animation: zoomIn 0.3s ease;
}

/* Posts Section Styles */
.posts-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.posts-section__header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.posts-section__heading {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.posts-section__heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.posts-section__subheading {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.6;
}

.posts-page {
    position: relative;
    z-index: 1;
}

/* Posts Pagination */
.posts-pagination {
    position: relative;
    z-index: 1;
}

.posts-pagination .pagination {
    gap: 10px;
}

.posts-pagination .page-item .page-link {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: var(--text-color);
    padding: 12px 18px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 45px;
    text-align: center;
}

.posts-pagination .page-item .page-link:hover,
.posts-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.posts-pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.posts-pagination .page-item.disabled .page-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.3);
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Posts */
@media (max-width: 1200px) {
    .posts-section__heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .posts-section {
        padding: 70px 0;
    }
    
    .posts-section__heading {
        font-size: 2.5rem;
    }
    
    .posts-section__subheading {
        font-size: 1.2rem;
    }
    
    .posts-section__header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .posts-section {
        padding: 60px 0;
    }
    
    .posts-section__heading {
        font-size: 2.2rem;
    }
    
    .posts-section__subheading {
        font-size: 1.1rem;
    }
    
    .posts-section__header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .posts-section {
        padding: 50px 0;
    }
    
    .posts-section__heading {
        font-size: 2rem;
    }
    
    .posts-section__subheading {
        font-size: 1rem;
    }
    
    .posts-section__header {
        margin-bottom: 30px;
    }
}

/* Blog Detail Page Styles */
.blog-detail-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.blog-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Blog Detail Main Content */
.blog-detail {
    position: relative;
    z-index: 1;
}

.blog-detail__header {
    margin-bottom: 40px;
}

.blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.blog-detail__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail__meta i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-detail__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail__subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.blog-detail__image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-detail__image:hover .blog-detail__img {
    transform: scale(1.02);
}

.blog-detail__content {
    margin-bottom: 40px;
}

.blog-detail__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.9;
}

.blog-detail__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 40px 0 20px 0;
    position: relative;
    padding-left: 20px;
}

.blog-detail__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.blog-detail__quote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.blog-detail__quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.blog-detail__quote cite {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    font-style: normal;
}

.blog-detail__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.blog-detail__tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-detail__tag-label {
    font-weight: 600;
    color: var(--text-color);
}

.blog-detail__tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-detail__tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.blog-detail__share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-detail__share-label {
    font-weight: 600;
    color: var(--text-color);
}

.blog-detail__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail__share-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: relative;
    z-index: 1;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.sidebar-widget__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 0;
}

.search-form__input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px 0 0 25px;
    border-right: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-form__button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Author Widget */
.author-info {
    text-align: center;
}

.author-info__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.author-info__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.author-info__bio {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 15px;
}

.author-info__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-info__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-info__social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post__image {
    flex-shrink: 0;
}

.recent-post__image img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post__content {
    flex: 1;
}

.recent-post__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-post__title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.recent-post__date {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-count {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Detail */
@media (max-width: 1200px) {
    .blog-detail__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .blog-detail-section {
        padding: 70px 0;
    }
    
    .blog-detail__title {
        font-size: 2.2rem;
    }
    
    .blog-detail__heading {
        font-size: 1.6rem;
    }
    
    .blog-detail__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 60px 0;
    }
    
    .blog-detail__title {
        font-size: 2rem;
    }
    
    .blog-detail__heading {
        font-size: 1.4rem;
    }
    
    .blog-detail__meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-detail-section {
        padding: 50px 0;
    }
    
    .blog-detail__title {
        font-size: 1.8rem;
    }
    
    .blog-detail__heading {
        font-size: 1.3rem;
    }
    
    .blog-detail__image {
        margin-bottom: 30px;
    }
    
    .blog-detail__content {
        margin-bottom: 30px;
    }
    
    .blog-detail__footer {
        margin-bottom: 20px;
    }
    
    .sidebar-widget {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* What We Do Admin Styles */
.what-we-do-image-upload {
    margin-bottom: 10px;
}

.what-we-do-image-preview {
    margin-top: 10px;
}

.what-we-do-image-preview img {
    max-width: 200px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.what-we-do-product-item,
.what-we-do-feature-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.what-we-do-product-item h3,
.what-we-do-feature-item h3 {
    margin-top: 0;
    color: #23282d;
}

.remove-product,
.remove-feature {
    background: #dc3232;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-product:hover,
.remove-feature:hover {
    background: #a00;
}

#add-product,
#add-feature {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 20px;
}

#add-product:hover,
#add-feature:hover {
    background: #005a87;
}

/* Why Choose Us Admin Styles */
.why-choose-us-benefit-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.why-choose-us-benefit-item h3 {
    margin-top: 0;
    color: #23282d;
}

.remove-benefit {
    background: #dc3232;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-benefit:hover {
    background: #a00;
}

#add-benefit {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 20px;
}

#add-benefit:hover {
    background: #005a87;
}

/* 404 Error Page Styles */
.error-404-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.error-404-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.error-404-image {
    margin-bottom: 40px;
    position: relative;
}

.error-404-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.error-404-img:hover {
    transform: translateY(-5px);
}

.error-404-text {
    margin-bottom: 40px;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.error-404-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.error-404-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.error-404-actions {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
    justify-content: center;
}

.error-404-btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.error-404-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
    color: var(--white);
}

.error-404-btn--secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.error-404-btn--secondary:hover {
    background: var(--text-color);
    color: var(--white);
    transform: translateY(-3px);
}

.error-404-quick-links {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.error-404-quick-links-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 25px 0;
}

.error-404-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 69, 0, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.error-404-quick-link:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.15);
}

.error-404-quick-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Responsive styles for 404 page */
@media (max-width: 768px) {
    .error-404-section {
        padding: 60px 0;
    }
    
    .error-404-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .error-404-title {
        font-size: 6rem;
    }
    
    .error-404-heading {
        font-size: 2rem;
    }
    
    .error-404-description {
        font-size: 1rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-404-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .error-404-quick-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .error-404-title {
        font-size: 5rem;
    }
    
    .error-404-heading {
        font-size: 1.8rem;
    }
    
    .error-404-content {
        padding: 30px 20px;
    }
}

/* Google Maps Section */
.google-maps-section {
    padding: 80px 0 0;
    background-color: var(--light-gray);
}

.google-maps-section__header {
    margin-bottom: 50px;
}

.google-maps-section__heading {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.google-maps-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(224, 59, 4, 0.3);
}

.google-maps-section__subheading {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

.google-maps-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.google-maps-embed {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.google-maps-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.google-maps-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    max-width: 350px;
}

.google-maps-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.google-maps-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.google-maps-info-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(224, 59, 4, 0.3);
}

.google-maps-info-card__icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.google-maps-info-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.google-maps-info-card__address {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

.google-maps-info-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.google-maps-info-card__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 59, 4, 0.3);
}

.google-maps-info-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 59, 4, 0.4);
    color: var(--white);
    text-decoration: none;
}

.google-maps-info-card__button i {
    font-size: 0.9rem;
}

/* Responsive Design for Google Maps Section */
@media (max-width: 992px) {
    .google-maps-section {
        padding: 60px 0 0;
    }
    
    .google-maps-section__heading {
        font-size: 2.2rem;
    }
    
    .google-maps-section__subheading {
        font-size: 1.1rem;
    }
    
    .google-maps-embed {
        height: 400px;
    }
    
    .google-maps-overlay {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .google-maps-info-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .google-maps-section {
        padding: 50px 0 0;
    }
    
    .google-maps-section__heading {
        font-size: 2rem;
    }
    
    .google-maps-section__subheading {
        font-size: 1rem;
    }
    
    .google-maps-embed {
        height: 350px;
    }
    
    .google-maps-info-card {
        padding: 15px;
    }
    
    .google-maps-info-card__title {
        font-size: 1.2rem;
    }
    
    .google-maps-info-card__address {
        font-size: 0.95rem;
    }
    
    .google-maps-info-card__button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .google-maps-section {
        padding: 40px 0 0;
    }
    
    .google-maps-section__heading {
        font-size: 1.8rem;
    }
    
    .google-maps-embed {
        height: 300px;
    }
    
    .google-maps-info-card {
        padding: 12px;
    }
    
    .google-maps-info-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .google-maps-info-card__icon i {
        font-size: 1.2rem;
    }
    
    .google-maps-info-card__title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .google-maps-info-card__address {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .google-maps-info-card__actions {
        flex-direction: column;
    }
    
    .google-maps-info-card__button {
        padding: 10px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
}

/* Google Maps Admin Styles */
.google-maps-embed-url {
    font-family: monospace;
    font-size: 12px;
    line-height: 1.4;
}

.google-maps-admin-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.google-maps-admin-preview h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.google-maps-admin-preview p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-section {
    padding: 70px 0;
    background: #f5f5f5; /* Very light grey background */
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    display: none; /* Remove the decorative pattern overlay */
}

/* Contact Header */
.contact-header {
    margin-bottom: 40px;
}

.contact-header__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #dc3545; /* Red color for heading */
    margin-bottom: 15px;
    text-shadow: none; /* Remove text shadow */
    letter-spacing: -1px;
}

.contact-header__subtitle {
    font-size: 1.1rem;
    color: #000000; /* Black font */
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.contact-header__divider {
    width: 60px;
    height: 3px;
    background: #dc3545; /* Red color for divider */
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: none; /* Remove shadow */
}

/* Contact Details */
.contact-details {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details__header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545; /* Red color for heading */
    margin-bottom: 12px;
    /* Remove gradient background-clip */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.contact-details__description {
    color: #000000; /* Black font */
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

.contact-details__list {
    margin-bottom: 30px;
    flex: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(220, 53, 69, 0.1); /* Light red border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent); /* Light red gradient */
    transition: left 0.6s ease;
}

.contact-detail-item:hover::before {
    left: 100%;
}

.contact-detail-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.2); /* Red shadow */
    border-color: rgba(220, 53, 69, 0.3); /* Red border on hover */
}

.contact-detail-item__icon {
    width: 50px;
    height: 50px;
    background: #dc3545; /* Red background */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3); /* Red shadow */
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-item__icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4); /* Red shadow */
}

.contact-detail-item__icon i {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-detail-item__content {
    flex: 1;
}

.contact-detail-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #dc3545; /* Red color for heading */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item__text {
    color: #000000; /* Black font */
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-details__social {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(220, 53, 69, 0.1); /* Light red border */
}

.contact-details__social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #dc3545; /* Red color for heading */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: #dc3545; /* Red background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3); /* Red shadow */
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4); /* Red shadow */
    color: var(--white);
    background: #c82333; /* Darker red on hover */
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-form-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-card__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #dc3545; /* Red color for heading */
    margin-bottom: 15px;
    /* Remove gradient background-clip */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.contact-form-card__subtitle {
    color: #000000; /* Black font */
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-form-card__form {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #dc3545; /* Red color for labels */
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 2px solid rgba(220, 53, 69, 0.1); /* Light red border */
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    color: #000000; /* Black font */
}

.form-input:focus,
.form-textarea:focus {
    border-color: #dc3545; /* Red border on focus */
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1); /* Red shadow */
    outline: none;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.5); /* Darker placeholder */
    font-style: italic;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 35px;
    background: #dc3545; /* Red background */
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3); /* Red shadow */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c82333; /* Darker red on hover */
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4); /* Red shadow */
}

.submit-btn__text {
    font-weight: 600;
}

.submit-btn__icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-btn__icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header__title {
        font-size: 2.2rem;
    }
    
    .contact-details__title,
    .contact-form-card__title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
