/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fffacd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8fe73c;
}

.login-btn {
    background: #ffc107;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #f9a825;
}

.dark-mode-toggle {
    background: none;
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.dark-mode-toggle:hover {
    border-color: #ffc107;
    transform: scale(1.05);
}

.dark-mode-toggle .moon-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
    display: inline;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #2d2810;
    color: #e0e0a0;
}

body.dark-mode .header {
    background: #2d2d2d;
    border-bottom-color: #404040;
}

body.dark-mode .logo h1 {
    color: #e0e0e0;
}

body.dark-mode .main-nav a {
    color: #b0b0b0;
}

body.dark-mode .main-nav a:hover,
body.dark-mode .main-nav a.active {
    color: #ffc107;
}

body.dark-mode .mobile-menu-toggle span {
    background: #e0e0e0;
}

body.dark-mode .breadcrumb {
    background: #2d2d2d;
    border-bottom-color: #404040;
}

body.dark-mode .breadcrumb p {
    color: #b0b0b0;
}

body.dark-mode .content-box {
    background: #3d3820;
    border-color: #5a5a30;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

body.dark-mode .content-box h3 {
    color: #e0e0e0;
}

body.dark-mode .content-box p {
    color: #b0b0b0;
}

body.dark-mode .tab-btn {
    background: #3d3820;
    color: #e0e0a0;
    border-color: #5a5a30;
}

body.dark-mode .tab-btn:hover {
    background: #4d4830;
    color: #f0f0c0;
}

body.dark-mode .tab-btn.active {
    background: #5d5820;
    color: #fff;
    border-color: #7d7830;
    font-weight: 700;
}

body.dark-mode .feature-box {
    background: #2d2d2d;
    border-color: #404040;
}

body.dark-mode .feature-box h3 {
    color: #e0e0e0;
}

body.dark-mode .feature-box p {
    color: #b0b0b0;
}

body.dark-mode .service-card {
    background: #2d2d2d;
    border-color: #404040;
}

body.dark-mode .service-card h3 {
    color: #e0e0e0;
}

body.dark-mode .service-card p {
    color: #b0b0b0;
}

body.dark-mode .section-title {
    color: #e0e0e0;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

body.dark-mode .why-choose-us {
    background: #1a1a1a;
}

body.dark-mode .our-services {
    background: #242424;
}

body.dark-mode .cert-item {
    background: #2d2d2d;
    border-color: #404040;
}

body.dark-mode .cert-item h4 {
    color: #e0e0e0;
}

body.dark-mode .cert-item p {
    color: #b0b0b0;
}

body.dark-mode .collection-header {
    background: #2d2d2d;
}

body.dark-mode .collection-header h1 {
    color: #e0e0e0;
}

body.dark-mode .collection-header p {
    color: #b0b0b0;
}

body.dark-mode .contact-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.dark-mode .quick-contact-item {
    background: #2d2d2d;
    border-color: #404040;
}

body.dark-mode .quick-contact-item h4 {
    color: #e0e0e0;
}

body.dark-mode .quick-contact-item p {
    color: #b0b0b0;
}

body.dark-mode .location-card {
    background: #2d2d2d;
    border-left-color: #ffc107;
}

body.dark-mode .location-card h4 {
    color: #e0e0e0;
}

body.dark-mode .location-card p {
    color: #b0b0b0;
}

body.dark-mode .location-card strong {
    color: #e0e0e0;
}

body.dark-mode .dark-mode-toggle {
    border-color: #404040;
}

body.dark-mode .footer {
    background: #1a1a1a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: visible;
}

.hero-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(165, 220, 255, 0.75) 0%, rgba(255, 220, 165, 0.75) 50%, rgba(255, 182, 193, 0.70) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 40px;
}

.hero-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #808680;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.typing-text {
    border-right: 3px solid #000;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    animation: typing 4s steps(50) 1s forwards, blink-caret 0.75s step-end infinite;
    max-width: 100%;
    font-style: italic;
    font-family: 'Brush Script MT', cursive;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #fff;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
        border-right: none;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
    justify-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: transparent;
    padding: 20px 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
    display: block;
    box-shadow: none;
    width: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    color: #000;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    color: #4a7c9e;
}

.feature-item p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.6;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    margin: 25px 0;
    font-weight: 400;
    opacity: 0;
    line-height: 1.6;
    color: #242222;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
}

.fade-in {
    animation: fadeIn 1s ease-in 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #ffc107;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.cta-button:hover {
    background: #ffc107;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb p {
    color: #777;
    font-size: 13px;
}

/* About Tabs */
.about-tabs {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tabs-nav {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
}

.tab-btn {
    background: #fffacd;
    border: 1px solid #ddd;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: #4a7c9e;
    transition: all 0.3s;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #fff9b8;
    color: #333;
}

.tab-btn.active {
    background: #ffec8b;
    color: #333;
    border-color: #ffd700;
    font-weight: 700;
}

/* Tab Content */
.tab-content-section {
    padding: 40px 0;
    min-height: 500px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box {
    background: #fffff0;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e8e8a0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.content-box a:hover {
    text-decoration: underline;
}

/* Login Section */
.login-section {
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.login-box {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-box h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.login-box > p {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ffc107;
}

.submit-btn {
    background: #ffc107;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #f9a825;
}

.login-note {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 20px;
    font-style: italic;
}

/* Collection Gallery */
.collection-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.collection-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
    border-color: #ffc107;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.collection-item:hover img {
    transform: scale(1.02);
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    animation: lightboxZoom 0.3s ease;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
    user-select: none;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ffc107;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 35px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    user-select: none;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(231, 76, 60, 0.8);
    border-color: #ffc107;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Facility Gallery */
.facility-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0 30px 0;
}

.facility-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
    border-color: #ffc107;
}

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.facility-item p {
    padding: 12px;
    margin: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
    text-align: center;
}

.cert-item {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.cert-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cert-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.cert-item h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 15px;
    font-weight: 700;
}

.cert-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: auto;
}

.cert-link {
    display: inline-block;
    padding: 10px 24px;
    background: #ffc107;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

.cert-link:hover {
    background: #f9a825;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.cert-link::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.3s ease;
}

.cert-link:hover::after {
    transform: translateX(5px);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info h4 {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-form-section h3 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffc107;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    background: #ffc107;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .submit-btn:hover {
    background: #f9a825;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    margin: 0;
    font-size: 13px;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
}

.feature-icon-large {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Our Services Section */
.our-services {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffc107 0%, #f9a825 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: #ffc107;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: #f9a825;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Collection Page Enhancements */
.collection-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid #ffc107;
}

.collection-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.collection-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.collection-categories {
    margin-bottom: 40px;
    text-align: center;
}

.collection-categories h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.category-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tag {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover {
    border-color: #ffc107;
    color: #ffc107;
}

.category-tag.active {
    background: #ffc107;
    border-color: #ffc107;
    color: #fff;
}

/* Contact Page Enhancements */
.contact-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: -40px 0 40px 0;
    position: relative;
    z-index: 10;
}

.quick-contact-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.quick-contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.quick-contact-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.location-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.location-card strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        transition: left 0.3s;
        padding: 30px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        line-height: 1.6;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .typing-text {
        font-size: 32px;
        font-style: italic;
        font-family: 'Brush Script MT', cursive;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact {
        grid-template-columns: repeat(2, 1fr);
        margin: -30px 0 30px 0;
    }
    
    .facility-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        font-size: 15px;
    }

    .content-box {
        padding: 20px;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 30px 0 40px 0;
        overflow: visible;
    }

    .hero-overlay {
        position: relative;
    }

    .hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .typing-text {
        max-width: 100%;
        white-space: normal;
        border-right: none;
        animation: none;
        display: block;
        width: 100% !important;
        font-style: italic;
        font-family: 'Brush Script MT', cursive;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 20px 0;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .feature-item h3 {
        font-size: 16px;
        margin-bottom: 5px;
        font-style: italic;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 500;
        color: #4a7c9e;
    }
    
    .feature-item p {
        font-size: 14px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        line-height: 1.6;
    }
    
    .hero-subtitle {
        font-size: 16px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        margin: 15px 0;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .facility-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .facility-item img {
        height: 150px;
    }
    
    .collection-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .collection-item {
        height: 300px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cert-item {
        padding: 20px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .quick-contact {
        grid-template-columns: 1fr;
        margin: 20px 0;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-header p {
        font-size: 14px;
    }
    
    .collection-header h1 {
        font-size: 28px;
    }
    
    .category-tags {
        gap: 10px;
    }
    
    .category-tag {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .cert-icon {
        font-size: 3rem;
    }
    
    .cert-item h4 {
        font-size: 16px;
    }
    
    .cert-item p {
        font-size: 13px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 30px 0 50px 0;
        overflow: visible;
    }

    .hero-slideshow {
        position: fixed;
        z-index: -1;
    }

    .hero-overlay {
        position: relative;
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
    }

    .hero-content {
        margin-top: 20px;
        padding: 0 15px;
        position: relative;
    }

    .hero-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .typing-text {
        max-width: 100%;
        white-space: normal;
        border-right: none;
        animation: none;
        display: block;
        width: 100% !important;
        font-style: italic;
        font-family: 'Brush Script MT', cursive;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 15px 0;
    }
    
    .feature-item {
        padding: 12px 10px;
    }
    
    .feature-icon {
        font-size: 25px;
        margin-bottom: 5px;
    }
    
    .feature-item h3 {
        font-size: 14px;
        margin-bottom: 4px;
        font-style: italic;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 500;
        color: #4a7c9e;
    }
    
    .feature-item p {
        font-size: 12px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        line-height: 1.6;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin: 12px 0;
        line-height: 1.4;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }

    .hero-content p {
        font-size: 16px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        line-height: 1.6;
    }
    
    .typing-text {
        font-size: 22px;
        white-space: normal;
        font-style: italic;
        font-family: 'Brush Script MT', cursive;
    }
    
    .hero-subtitle {
        font-size: 16px;
        font-style: normal;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .facility-gallery {
        grid-template-columns: 1fr;
    }
    
    .facility-item img {
        height: 180px;
    }
    
    .collection-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .collection-item {
        height: 350px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cert-item {
        padding: 18px 12px;
    }
    
    .cert-icon {
        font-size: 2.5rem;
    }
    
    .cert-item h4 {
        font-size: 15px;
    }
    
    .cert-item p {
        font-size: 12px;
    }
    
    .cert-link {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 25px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
    
    .lightbox-counter {
        bottom: 20px;
        padding: 8px 20px;
        font-size: 14px;
    }
}
