/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #0052a3;
    --light-blue: #e6f2ff;
    --accent-blue: #4da6ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #212529;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn-primary, .btn-secondary, .btn-signup, .btn-outline, .btn-solution {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
}

.btn-signup {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-signup:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 100%;
    margin-top: 20px;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-solution {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 100%;
    margin-top: 20px;
}

.btn-solution:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Animation Classes */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-header {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-badge {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 80px;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../img/durga001.png');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../img/durga002.png');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../img/durga003.png');
    background-size: cover;
    background-position: center;
}

.slide-content {
    padding-left: 10%;
    max-width: 700px;
    color: var(--white);
}

.slide-title {
    font-size: 48px;
    margin-bottom: 20px;
    animation-delay: 0.3s;
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    animation-delay: 0.5s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    animation-delay: 0.7s;
}

.slide-buttons .btn-primary {
    animation-delay: 0.7s;
}

.slide-buttons .btn-secondary {
    animation-delay: 0.9s;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.slide-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.trust-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    max-width: 350px;
    animation-delay: 1s;
}

.badge-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.badge-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.badge-text p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Calculator Section */
.calculator-section {
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calculator-form, .calculator-result {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.calculator-form .animate-card {
    animation-delay: 0.3s;
}

.calculator-result .animate-card {
    animation-delay: 0.6s;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background-color: var(--medium-gray);
    outline: none;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--medium-gray);
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.form-group select:focus {
    border-color: var(--primary-blue);
}

.range-value {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-weight: 600;
    color: var(--primary-blue);
}

.calculate-btn {
    width: 100%;
    margin-top: 10px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.result-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0;
}

.result-icon {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.result-details {
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--medium-gray);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background-color: var(--light-blue);
    margin: 0 -30px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-card:nth-child(1) .animate-card {
    animation-delay: 0.3s;
}

.solution-card:nth-child(2) .animate-card {
    animation-delay: 0.5s;
}

.solution-card:nth-child(3) .animate-card {
    animation-delay: 0.7s;
}

.solution-image {
    height: 200px;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-image:nth-child(1) {
    background: linear-gradient(rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2)), url('../images/residential.jpg');
    background-size: cover;
    background-position: center;
}

.solution-image:nth-child(2) {
    background: linear-gradient(rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2)), url('../images/commercial.jpg');
    background-size: cover;
    background-position: center;
}

.solution-image:nth-child(3) {
    background: linear-gradient(rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2)), url('../images/industrial.jpg');
    background-size: cover;
    background-position: center;
}

.solution-icon {
    background-color: var(--white);
    color: var(--primary-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow);
}

.solution-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.solution-content {
    padding: 25px;
}

.solution-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
}

.solution-features {
    margin-top: 15px;
    margin-bottom: 20px;
}

.solution-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.solution-features i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 14px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--white);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reviews-left .animate-card {
    animation-delay: 0.3s;
}

.reviews-right .animate-card {
    animation-delay: 0.6s;
}

.highlight-text {
    color: var(--primary-blue);
}

.subtitle {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

.video-container {
    margin-top: 30px;
}

.video-thumbnail {
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.9)), url('https://img.youtube.com/vi/dQw4w9WgXcQ/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.video-thumbnail p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.reviews-slider {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    min-height: 350px;
}

.review-card {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.review-card.active {
    opacity: 1;
    visibility: visible;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.reviewer-details h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.reviewer-details p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.review-rating {
    color: #ffc107;
}

.review-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.review-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.review-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.review-indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-logo .logo-text p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 0;
}

.footer-description {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #333;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-blue);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 16px;
}

.contact-item p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .calculator-container,
    .solutions-grid,
    .reviews-container,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-badge {
        max-width: 300px;
        right: 15px;
        bottom: 15px;
    }
    
    .nav-links {
        margin-right: 15px;
    }
    
    .nav-links li {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .slide-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-badge {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin: 20px;
    }
    
    .solutions-grid,
    .calculator-container,
    .reviews-container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .btn-signup {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .calculator-form, .calculator-result {
        padding: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* ============================================
   SOLAR CALCULATOR SECTION STYLES - BLUE & WHITE THEME
============================================ */
.calculator-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.calculator-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(5deg); }
}

/* Calculator Container */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Input Section */
.input-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.input-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.input-section:hover::before {
    transform: scaleX(1);
}

.input-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.input-header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.input-header h3 {
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.input-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.input-header p {
    color: #4b5563;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Input Groups */
.input-group {
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group:nth-child(2) { animation-delay: 0.1s; }
.input-group:nth-child(3) { animation-delay: 0.2s; }
.input-group:nth-child(4) { animation-delay: 0.3s; }
.input-group:nth-child(5) { animation-delay: 0.4s; }

.input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.input-group label i {
    font-size: 18px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s;
}

.input-group:hover label i {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

/* Property Type Selector */
.property-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.property-btn {
    position: relative;
    padding: 20px;
    background: white;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    color: #4b5563;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    overflow: hidden;
}

.property-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.property-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
    transition: height 0.3s ease;
}

.property-btn.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-color: #2563eb;
    color: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.property-btn.active::before {
    opacity: 1;
}

.property-btn.active::after {
    height: 100%;
}

.property-btn i {
    font-size: 28px;
    color: #2563eb;
    transition: all 0.3s;
}

.property-btn.active i {
    color: #1d4ed8;
    transform: scale(1.2);
}

.property-btn span {
    font-weight: 600;
    font-size: 18px;
}

.btn-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: badgePulse 2s infinite;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
}

.property-info {
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    color: #059669;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.property-info:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateX(5px);
}

.property-info i {
    font-size: 18px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: white;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-symbol {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.input-wrapper input:focus + .input-focus-line {
    width: 100%;
}

/* Input Slider */
.input-slider {
    margin-top: 25px;
}

.input-slider input[type="range"] {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    transition: all 0.3s;
}

.input-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid #2563eb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.input-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: white;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 18px;
    pointer-events: none;
    transition: transform 0.3s;
}

.select-wrapper select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Quick Info */
.quick-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin: 30px 0;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quick-info h4 {
    color: #1e40af;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-info h4 i {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fact-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.fact-value {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Calculate Button */
.calculate-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.calculate-btn:hover::before {
    opacity: 1;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.calculate-btn:active {
    transform: translateY(-1px);
}

.calculate-btn i {
    font-size: 20px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Results Section */
.results-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }
    50% { 
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
    }
}

.results-header h3 {
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 10px;
    font-weight: 700;
}

.results-header p {
    color: #4b5563;
    font-size: 16px;
}

/* Initial State */
.initial-state {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.8s ease;
}

.initial-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.sun-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    animation: rotateSun 20s linear infinite;
}

@keyframes rotateSun {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    border-radius: 2px;
}

.ray1 { transform: translate(-50%, -50%) rotate(0deg); }
.ray2 { transform: translate(-50%, -50%) rotate(90deg); }
.ray3 { transform: translate(-50%, -50%) rotate(180deg); }
.ray4 { transform: translate(-50%, -50%) rotate(270deg); }

.initial-state i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #2563eb;
    z-index: 2;
}

.initial-state h4 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 700;
}

.initial-state p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Results Display */
.results-display {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    width: fit-content;
    animation: badgeSlideIn 0.5s ease;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.property-badge i {
    font-size: 16px;
}

/* Main Result */
.main-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .result-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.result-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
}

.result-value.highlight {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Detailed Results */
.detailed-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item.detailed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s;
    animation: slideInRight 0.5s ease;
    animation-fill-mode: both;
}

.result-item.detailed:nth-child(1) { animation-delay: 0.1s; }
.result-item.detailed:nth-child(2) { animation-delay: 0.2s; }
.result-item.detailed:nth-child(3) { animation-delay: 0.3s; }
.result-item.detailed:nth-child(4) { animation-delay: 0.4s; }

.result-item.detailed:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.result-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-icon {
    width: 45px;
    height: 45px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 18px;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.result-desc {
    font-size: 12px;
    color: #6b7280;
}

.result-amount {
    font-weight: 700;
    font-size: 20px;
    color: #1e40af;
}

.result-amount.highlight-green {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional Info */
.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .additional-info {
        grid-template-columns: 1fr;
    }
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 22px;
}

.info-content {
    flex: 1;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.info-label {
    font-size: 12px;
    color: #6b7280;
}

/* CTA Button */
.results-cta {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.results-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #059669, #047857);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.results-cta:hover::before {
    opacity: 1;
}

.results-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.results-cta i {
    font-size: 20px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px 25px;
    background: white;
    color: #059669;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 400px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.notification i {
    font-size: 22px;
}

.notification.error {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calculator-section {
        padding: 80px 0;
    }
    
    .calculator-container {
        gap: 30px;
    }
    
    .input-section,
    .results-section {
        padding: 30px;
    }
    
    .input-icon,
    .results-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .input-header h3,
    .results-header h3 {
        font-size: 24px;
    }
    
    .result-value {
        font-size: 30px;
    }
    
    .result-amount {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .calculator-section {
        padding: 60px 0;
    }
    
    .input-section,
    .results-section {
        padding: 20px;
    }
    
    .property-type-selector {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* ===== LOGO WRAPPER ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ===== LOGO IMAGE (NO BACKGROUND) ===== */
.logo-icon {
    width: 110px;      /* Increased size */
    height: 80px;
    background: none; /* IMPORTANT */
    border-radius: 0; /* No circle */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo Image */
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logo distort nahi hoga */
}

/* ===== LOGO TEXT ===== */
.logo-text h1 {
    font-size: 1.7rem;
    margin: 0;
    color: rgb(60, 14, 226); /* ya apna primary color */
    font-weight: 700;
}

.logo-text p {
    font-size: 0.9rem;
    margin: 2px 0 0;
    color: #0c0c0c;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 700px) {
    .logo-icon {
        width: 90px;
        height: 60px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }
}
