/* Logo Circle Styles */
.navbar .d-flex.align-items-center img {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 12px;
    width: 50px;
    height: 50px !important;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1; /* Ensures perfect circle */
}

/* Navigation Link Styles */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.section-title {
    color: var(--theme-text-primary, #333);
    font-weight: 600;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 3rem;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* About Us Section Styles */
#about-us {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #212428;
    opacity: 0.7;
    z-index: 0;
}

.about-content {
    color: var(--theme-text-light);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: var(--theme-text-light);
}

.about-content p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--theme-secondary);
}

.about-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    #about-us {
        padding: 40px 0;
    }
    
    .about-content {
        text-align: center;
        padding: 20px 0;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

/* Product Slider Custom Arrow Styles */
#product-carousel {
    position: relative;
}

.product-slider {
    position: relative;
    margin: 0 40px;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 46px;
    background-color: var(--theme-btn-primary-bg) !important;
    font-weight: 900;
    line-height: 0;
    padding-bottom: 8px;
}

.slick-prev:before, .slick-next:before {
    opacity: 1 !important;
    font-size: 28px !important;

}
.custom-arrow:hover {

    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.slick-prev.custom-arrow {
    left: -40px;

}

.slick-next.custom-arrow {
    right: -40px;

}

/* Responsive adjustments for arrows */
@media (max-width: 1200px) {
    .product-slider {
        margin: 0 30px;
    }
    
    .slick-prev.custom-arrow {
        left: -30px;
    }
    
    .slick-next.custom-arrow {
        right: -30px;
    }
    
    .custom-arrow {
        width: 45px;
        height: 45px;
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .product-slider {
        margin: 0 20px;
    }
    
    .slick-prev.custom-arrow {
        left: -20px;
    }
    
    .slick-next.custom-arrow {
        right: -20px;
    }
    
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .product-slider {
        margin: 0 15px;
    }
    
    .slick-prev.custom-arrow {
        left: -15px;
    }
    
    .slick-next.custom-arrow {
        right: -15px;
    }
    
    .custom-arrow {
        width: 35px;
        height: 35px;
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .product-slider {
        margin: 0 10px;
    }
    
    .slick-prev.custom-arrow {
        left: -10px;
    }
    
    .slick-next.custom-arrow {
        right: -10px;
    }
    
    .custom-arrow {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }
}

/* Product slider responsive card improvements */
@media (max-width: 768px) {
    .product-slider .product-slide {
        padding: 0 5px;
    }
    
    .product-slider .card {
        margin-bottom: 15px;
    }
    
    .product-slider .card-img-top {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .product-slider .product-slide {
        padding: 0 3px;
    }
    
    .product-slider .card-img-top {
        height: 180px !important;
    }
    
    .product-slider .card-title {
        font-size: 1rem;
    }
    
    .theme-price {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    #product-carousel {
        margin: 20px 0;
    }
    
    .product-slider .card-img-top {
        height: 160px !important;
    }
    
    .product-slider .card-body {
        padding: 15px;
    }
    
    .product-slider .card-title {
        font-size: 0.9rem;
    }
    
    .theme-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Product card styles */
.product-slider .card-title {
    height: 48px; /* Fixed height for 2 lines of text */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.1;
    margin-bottom: 0.75rem !important;
}

/* Ensure all product cards have the same height */
.product-slider .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-slider .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-slider .card-body .mt-auto {
    margin-top: auto !important;
}

/* Remove default margins and ensure no empty space */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

/* Remove any default body margins that might cause space */
body {
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
}

/* Certificates Section Styles */
#certificates-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
    margin-bottom: 0 !important;
}

.certificates-header {
    margin-bottom: 40px;
}

.certificates-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.certificates-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.certificates-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, 
        rgba(248,249,250,1) 0%, 
        rgba(248,249,250,0) 10%, 
        rgba(248,249,250,0) 90%, 
        rgba(248,249,250,1) 100%);
}

.certificates-slider {
    display: flex;
    width: calc(200% + 40px);
    animation: slideRightToLeft 20s linear infinite;
    gap: 40px;
    align-items: center;
}

.certificate-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
    height: 100px;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #2E7D32;
}

.certificate-logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.certificate-item:hover .certificate-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation for right to left movement */
@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.certificates-slider-container:hover .certificates-slider {
    animation-play-state: paused;
}

/* Responsive Design for Certificates */
@media (max-width: 1200px) {
    .certificates-slider {
        gap: 30px;
    }
    
    .certificate-item {
        min-width: 120px;
        height: 90px;
        padding: 15px;
    }
    
    .certificate-logo {
        max-width: 80px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    #certificates-section {
        padding: 40px 0;
    }
    
    .certificates-title {
        font-size: 2rem;
    }
    
    .certificates-subtitle {
        font-size: 1.1rem;
    }
    
    .certificates-slider {
        gap: 20px;
        animation-duration: 15s;
    }
    
    .certificate-item {
        min-width: 100px;
        height: 80px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .certificate-logo {
        max-width: 70px;
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .certificates-title {
        font-size: 1.75rem;
    }
    
    .certificates-subtitle {
        font-size: 1rem;
    }
    
    .certificates-slider {
        gap: 15px;
        animation-duration: 12s;
    }
    
    .certificate-item {
        min-width: 90px;
        height: 70px;
        padding: 10px;
        border-radius: 10px;
    }
    
    .certificate-logo {
        max-width: 60px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    #certificates-section {
        padding: 30px 0;
    }
    
    .certificates-header {
        margin-bottom: 30px;
    }
    
    .certificates-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .certificates-subtitle {
        font-size: 0.95rem;
    }
    
    .certificates-slider {
        gap: 12px;
        animation-duration: 10s;
    }
    
    .certificate-item {
        min-width: 80px;
        height: 60px;
        padding: 8px;
        border-radius: 8px;
    }
    
    .certificate-logo {
        max-width: 50px;
        max-height: 35px;
    }
}

/* Floating Contact Icons */
.floating-contact-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.floating-icon:hover {
    transform: scale(1.1);
    color: white;
}

.email-icon {
    background-color: #EA4335;
}

.phone-icon {
    background-color: #4285F4;
}

.location-icon {
    background-color: #DB4437;
}

.whatsapp-icon {
    background-color: #25D366;
}

.reviews-icon {
    background-color: #FFD700;
}

/* Hide floating contact icons on mobile */
@media (max-width: 768px) {
    .floating-contact-icons {
        display: none;
    }
}

/* Authentication Pages Styles */
.auth-container {
    
    background-color: #f8f9fa;
    padding: 2rem 0;
    background-color: var(--theme-background);
}

.auth-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
    margin-top: 75px;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-logo {
    color: var(--theme-primary);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.auth-form .form-label {
    font-weight: 500;
    color: #495057;
}

.auth-input {
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #6c757d;
}

.auth-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-link {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--theme-secondary);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #dee2e6;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: #fff;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toggle-password {
    border-left: 0;
}

.toggle-password:focus {
    box-shadow: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem 0;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1rem;
    }

    .auth-btn, .social-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .auth-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.eco-footer {
    background-color: #2E7D32;
    color: #ffffff;
    padding: 60px 0 40px 0;
    margin-top: 0 !important;
    width: 100%;
    margin-bottom: 0 !important;
    position: relative;
}

/* Ensure no space after footer */
.eco-footer:last-child {
    margin-bottom: 0 !important;
}

/* Override any Bootstrap or other framework margins */
footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure the footer container has no bottom margin */
.eco-footer .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove any potential bottom spacing from the last row */
.eco-footer .row:last-child {
    margin-bottom: 0 !important;
}

/* Footer Subscription Section */
.footer-subscription .footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.subscription-form .input-group {
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
}

.subscription-input {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 1rem;
}

.subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscription-input:focus {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #ffffff;
}

.subscription-btn {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.subscription-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Footer Logo Section */
.footer-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-logo .logo-circle {
    color: #81C784;
    font-size: 1.5rem;
    margin: 0 5px;
}

.footer-logo .tagline {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Contact Information */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info .contact-item i {
    color: #81C784;
    margin-top: 2px;
    min-width: 20px;
}

.contact-info .contact-item span {
    flex: 1;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social .social-icon:hover {
    background-color: #81C784;
    color: #2E7D32;
    transform: translateY(-2px);
}

/* Footer Navigation Columns */
.footer-column-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-links li a:hover {
    color: #81C784;
    padding-left: 5px;
}

/* Footer Responsive Design - Updated for better mobile experience */
@media (max-width: 991.98px) {
    .eco-footer {
        padding: 40px 0 30px 0;
    }
    
    .footer-subscription {
        text-align: left;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-info .contact-item {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }

    /* Improve column spacing */
    .footer-column-title {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .eco-footer {
        padding: 30px 0 20px 0;
    }
    
    .footer-logo .logo-text {
        font-size: 1.75rem;
        word-wrap: break-word;
    }
    
    .footer-column-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links li a {
        font-size: 0.95rem;
    }
    
    .subscription-form .input-group {
        max-width: 100%;
    }

    /* Improve contact info layout */
    .contact-info .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-info .contact-item i {
        margin-top: 4px;
    }

    .contact-info .contact-item span {
        display: inline-block;
        word-wrap: break-word;
    }
}

@media (max-width: 575.98px) {
    .eco-footer {
        padding: 25px 15px;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo .tagline {
        font-size: 0.9rem;
    }
    
    .contact-info .contact-item {
        font-size: 0.9rem;
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }
    
    .contact-info .contact-item i {
        margin-top: 4px;
        min-width: 16px;
    }
    
    .footer-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Improve spacing between sections */
    .col-lg-5.col-md-12.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    /* Ensure links are easily clickable */
    .footer-links li a {
        padding: 4px 0;
        display: inline-block;
    }
}

/* Ensure contact items don't overflow */
.contact-info .contact-item span {
    word-break: break-word;
}

/* Login/Account Links Hover Effects */
.navbar-right a[href*="login"],
.navbar-right a[href*="accounts"],
.d-lg-none a[href*="login"],
.d-lg-none a[href*="accounts"] {
    transition: opacity 0.3s ease;
}

.navbar-right a[href*="login"]:hover,
.navbar-right a[href*="accounts"]:hover,
.d-lg-none a[href*="login"]:hover,
.d-lg-none a[href*="accounts"]:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Account Page Styles */
.customer-order-list .panel {
    margin-bottom: 20px;
}

.customer-order-list .panel-heading h4 {
    margin: 0;
    font-size: 16px;
}

.customer-order-list .security-item {
    margin-bottom: 15px;
}

.customer-order-list .security-item i {
    margin-right: 8px;
    color: #337ab7;
}

.customer-order-list .form-group label {
    font-weight: 600;
    color: #333;
}

.customer-order-list .label {
    font-size: 11px;
    margin-left: 5px;
}

.customer-order-list .input-group {
    margin-top: 5px;
}

.customer-order-list .btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

/* Tab content spacing */
.tab-content {
    padding-top: 20px;
}

/* Address table responsive */
.table-responsive {
    overflow-x: auto;
}

/* Profile verification status */
.verification-status {
    display: inline-block;
    margin-left: 10px;
}

/* Mobile verification section */
.mobile-verification {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Account security panel */
.panel-info .panel-heading {
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-info {
    border-color: #bce8f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-order-list .col-md-4,
    .customer-order-list .col-md-8 {
        margin-bottom: 20px;
    }
    
    .table-responsive {
        font-size: 12px;
    }
    
    .btn-group .btn {
        padding: 5px 8px;
        font-size: 11px;
    }
}

/* Profile Container Styles */
.profile-container {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    margin-top: 30px; 
}

.profile-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e9ecef;
}

.profile-box .form-group {
    margin-bottom: 25px;
}

.profile-box .form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: left;
}

.profile-box .form-control {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.profile-box .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.profile-box .form-control:disabled {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.profile-box .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    width: auto;
    margin-top: 10px;
}

.profile-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.profile-box .text-muted {
    color: #6c757d !important;
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        padding: 20px;
    }
    
    .profile-box {
        padding: 25px 20px;
    }
    
    .profile-box .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .profile-box .btn-primary {
        padding: 12px 25px;
        width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .profile-box {
        padding: 20px 15px;
    }
    
    .profile-box .form-group {
        margin-bottom: 20px;
    }
}

