/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-text {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.loading-text span {
    font-family: 'Abril Fatface', cursive;
    color: #fff;
    font-size: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.loading-text span:nth-child(2) {
    margin-right: 20px;
}

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

.loading-text span:nth-child(1) { animation-delay: 0.1s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.3s; }
.loading-text span:nth-child(4) { animation-delay: 0.4s; }
.loading-text span:nth-child(5) { animation-delay: 0.5s; }
.loading-text span:nth-child(6) { animation-delay: 0.6s; }
.loading-text span:nth-child(7) { animation-delay: 0.7s; }
.loading-text span:nth-child(8) { animation-delay: 0.8s; }
.loading-text span:nth-child(9) { animation-delay: 0.9s; }
.loading-text span:nth-child(10) { animation-delay: 1s; }

.loading-bar {
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    width: 0;
    height: 100%;
    background-color: #4a90e2;
    animation: progress 2s ease forwards;
}

@keyframes progress {
    to {
        width: 100%;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

/* Top Bar */
.top-bar {
    background-color: #f3f3f3;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.contact-info a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #000;
}

.contact-info i {
    font-size: 14px;
}

/* Main Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-text {
    text-align: center;
}

.company-name {
    display: block;
    font-family: 'Abril Fatface', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.company-tagline {
    display: block;
    font-size: 18px;
    color: #666;
    font-style: italic;
}

/* Navigation Bar */
.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.nav-links li a:hover {
    color: #4a90e2;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 15px;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content ul li {
    position: relative;
}

.dropdown-content ul li a {
    color: #333;
    padding: 12px 20px;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.dropdown-content ul li:last-child a {
    border-bottom: none;
}

.dropdown-content ul li a:hover {
    background-color: #f8f8f8;
    color: #4a90e2;
    padding-left: 25px;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-content ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        gap: 30px;
    }

    .dropdown-menu {
        min-width: 200px;
    }

    .submenu {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
    }

    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
    }

    .nav-links li:hover .dropdown-menu,
    .dropdown-content ul li:hover > .submenu {
        display: block;
    }
}

@media (max-width: 576px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 15px;
    }
}

/* Hero section styles */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    max-width: 800px;
    margin: 0 auto;
}

.slide-content.active {
    opacity: 1;
    transform: translateY(0);
}

.subtitle {
    font-size: 1em;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-align: center;
}

.hero h1 .highlight {
    color: #4a90e2;
    display: block;
}

.hero-description {
    font-size: 1.1em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4a90e2;
    color: white;
    gap: 10px;
}

.cta-button.primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.cta-button.primary i {
    transition: transform 0.3s ease;
}

.cta-button.primary:hover i {
    transform: translateX(5px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #2c5d7c;
    transform: translateY(-2px);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    z-index: 2;
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover {
    background-color: white;
    color: #2c5d7c;
    border-color: white;
}

.next-slide:hover {
    background-color: white;
    color: #2c5d7c;
    border-color: white;
}

.slide-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator i {
    font-size: 1.2em;
    animation: bounce 2s infinite;
}

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

/* Responsive design for hero section */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5em;
    }

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

    .cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .cta-group {
        flex-direction: column;
    }

    .hero-description {
        font-size: 0.9em;
    }

    .cta-button {
        padding: 12px 25px;
    }
}

/* Popular Categories Section */
.popular-categories {
    padding: 100px 0;
    background-color: #ebe9eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.section-subtitle {
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2em;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.categories-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    margin: 0;
}

.category-card {
    flex: 0 0 calc(25% - 23px);
    background: white;
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.view-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    padding: 12px 28px;
    border: 1px solid white;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: white;
    color: #000;
}

.category-content {
    padding: 20px 0 5px;
    text-align: center;
}

.category-content h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3em;
    font-weight: 500;
    color: #000;
    margin: 0 0 6px 0;
}

.category-content p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Update the container to handle overflow */
.categories-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

/* Update arrow positioning */
.popular-categories .slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 2;
}

.popular-categories .slider-arrows .arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #000;
    background: white;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.popular-categories .slider-arrows .arrow:hover {
    background: #000;
    color: white;
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .category-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .category-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .category-card {
        flex: 0 0 calc(100% - 10px);
    }
}

/* Company Introduction Section */
.company-intro {
    padding: 100px 0;
    background-color: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.intro-text {
    padding-right: 40px;
}

.intro-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2em;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-icon i {
    font-size: 32px;
}

.whatsapp-icon a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for company intro */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        height: 400px;
    }

    .intro-text {
        padding-right: 0;
    }

    .intro-text h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .company-intro {
        padding: 60px 0;
    }

    .intro-text h2 {
        font-size: 1.8em;
    }

    .intro-text p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .intro-image {
        height: 300px;
    }

    .whatsapp-icon {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-icon a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon i {
        font-size: 28px;
    }
}

/* Work Process Section */
.work-process {
    padding: 100px 0;
    background-color: #fff;
}

.work-process .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff0000;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.process-step h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    color: #000;
    font-size: 20px;
    z-index: 1;
}

.process-step:last-child .step-arrow {
    display: none;
}

/* Responsive styles for work process */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }

    .step-arrow {
        transform: rotate(90deg);
        right: 50%;
        top: auto;
        bottom: -30px;
    }
}

@media (max-width: 576px) {
    .work-process {
        padding: 60px 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-step h3 {
        font-size: 1.2em;
    }

    .process-step p {
        font-size: 0.9em;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 100px 0 80px 0;
    background-color: #fff;
}

.products-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    margin: 0;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-image {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #f8f8f8;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.product-actions {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #000;
    color: white;
    transform: translateY(-3px);
}

.product-content {
    padding: 25px 0 5px;
    text-align: center;
}

.product-content h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2em;
    font-weight: 500;
    color: #000;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: #666;
}

.product-category {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-products .slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 2;
}

.featured-products .slider-arrows .arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #000;
    background: white;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.featured-products .slider-arrows .arrow:hover {
    background: #000;
    color: white;
    transform: translateX(-3px);
}

.featured-products .slider-arrows .arrow.next:hover {
    transform: translateX(3px);
}

/* Responsive styles for featured products */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .product-image {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .product-card {
        flex: 0 0 calc(100% - 10px);
    }
    
    .product-image {
        height: 320px;
    }
}

/* Product Carousel Indicators */
.product-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.product-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-indicator.active {
    background-color: #000;
    transform: scale(1.2);
}

.more-products-text {
    text-align: center;
    margin: 30px 0 60px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.more-products-text a {
    color: #2c5d7c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.more-products-text a:hover {
    color: #4a90e2;
}

/* Contact Info Section */
.contact-info-section {
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.contact-text {
    font-size: 0.95em;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.contact-text a {
    color: #2c5d7c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #4a90e2;
}

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

    .contact-title {
        font-size: 1.5em;
    }

    .contact-text {
        font-size: 0.9em;
        padding: 0 20px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2em;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.about-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #2c5d7c;
    margin: 20px auto 0;
}

.about-paragraph {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.about-paragraph:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-paragraph h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #2c5d7c;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.about-paragraph h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #4a90e2;
}

.about-text p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.8;
    margin: 0;
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about-title {
        font-size: 2em;
    }
    
    .about-paragraph h3 {
        font-size: 1.3em;
    }
    
    .about-text p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    
    .about-paragraph {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .about-paragraph h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.6em;
    }
    
    .about-paragraph h3 {
        font-size: 1.1em;
    }
    
    .about-text p {
        font-size: 0.95em;
    }
    
    .about-paragraph {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #4a90e2;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 32px;
    width: fit-content;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-col .social-links {
    display: flex;
    gap: 15px;
}

.footer-col .social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col .social-links a:hover {
    background-color: #4a90e2;
    color: #fff;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul a:before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: #4a90e2;
    transform: translateX(5px);
    padding-left: 20px;
}

.footer-col ul a:hover:before {
    opacity: 1;
}

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

.footer-col .contact-info i {
    color: #4a90e2;
    font-size: 1.1em;
    margin-top: 5px;
}

.footer-col .contact-info span,
.footer-col .contact-info a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    line-height: 1.6;
    font-weight: 400;
}

.footer-col .contact-info a:hover {
    color: #4a90e2;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin: 0;
    font-weight: 400;
}

/* Subscribe Form Styles */
.subscribe-form {
    margin-top: 20px;
    position: relative;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4a90e2;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: #357abd;
}

/* Responsive styles for Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col .social-links {
        justify-content: center;
    }
    
    .footer-col .contact-info li {
        justify-content: center;
    }
    
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul a {
        padding-left: 0;
    }
    
    .footer-col ul a:before {
        display: none;
    }
    
    .main-footer {
        padding-top: 60px;
    }
    
    .footer-top {
        padding-bottom: 40px;
    }
    
    .subscribe-form {
        max-width: 300px;
        margin: 20px auto 0;
    }
} 