* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.top-bar {
    background-color: #f8f8f8;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.location {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.location-icon {
    color: #ff9900;
    margin-right: 5px;
}

.contact {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.phone-icon {
    color: #ff9900;
    margin-right: 5px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons span {
    margin-right: 5px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.pinterest {
    background-color: #bd081c;
}

.rss {
    background-color: #f26522;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.login-btn, .account-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #008000;
    color: white;
}

.login-btn:hover, .account-btn:hover {
    background-color: #006600;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
}

.certificates {
    display: flex;
    gap: 20px;
}

.certificates img {
    height: 60px;
}
.navbar {
    background-color: #009933;
    padding: 10px 15px;  /* Reduced padding */
    position: relative;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 10px;  /* Reduced gap between items from 20px to 10px */
    justify-content: center;
    flex-wrap: wrap;
}

.nav-items li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 7px 10px;   /* Reduced padding */
    position: relative;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.9rem;  /* Smaller font size */
}

.nav-items li a:hover {
    color: #ffeb3b;
}

.nav-items li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffeb3b;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-items li a:hover::after {
    width: 100%;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;  /* Slightly reduced width */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black !important;
    padding: 8px 12px;  /* Reduced padding */
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: normal !important;
    white-space: nowrap;
    font-size: 0.85rem;  /* Smaller font size */
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    padding-left: 16px;  /* Reduced padding */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropbtn span {
    font-size: 8px;  /* Reduced from 10px */
    margin-left: 2px;  /* Reduced margin */
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn span {
    transform: rotate(180deg);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;  /* Reduced padding */
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 22px;  /* Slightly smaller */
    height: 2px;  /* Reduced from 3px */
    background-color: #021b0a;
    margin: 4px 0;  /* Reduced margin */
    transition: all 0.3s ease;
}
/* Mobile responsive styles */
@media screen and (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-items {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #009933;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-items.active {
        right: 0;
    }
    
    .nav-items li {
        margin: 10px 0;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
        display: none;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-content a {
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.open .dropdown-content {
        display: block;
    }
    
    .menu-toggle span.active:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle span.active:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle span.active:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* For tablets */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .certificates {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar {
        justify-content: center;
    }
    
    .auth-buttons {
        margin: 10px 0;
    }
}

/* For small mobile devices */
@media screen and (max-width: 576px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .certificates img {
        height: 40px;
    }
    
    .slide img {
        height: 250px;
    }
    
    .location, .contact, .auth-buttons, .social-icons {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }
    
    .location, .contact {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .auth-buttons {
        order: 3;
        flex-direction: row;
        justify-content: center;
    }
    
    .login-btn, .account-btn {
        width: 45%;
        padding: 10px 5px;
        font-size: 14px;
        text-align: center;
    }
    
    .social-icons {
        order: 4;
        justify-content: center;
    }
}

/* For very small devices */
@media screen and (max-width: 360px) {
    .top-bar {
        padding: 10px 5px;
    }
    
    .location span, .contact span {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .login-btn, .account-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .nav-items {
        padding-top: 60px;
    }
    
    .logo img {
        height: 60px;
    }
}

.slider-container {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin-top:20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* X-offset, Y-offset, Blur, Opacity */
    margin-left:5%;
}

.slider {
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
  
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-controls button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-controls button.active {
    background-color: white;
}

/* Add overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.menu-overlay.active {
    display: block;
}

/* Make sure overlapping elements don't create issues */
.dropdown-content {
    overflow-y: auto;
    max-height: 80vh;
}

/* Fix for image responsiveness */
@media screen and (max-width: 576px) {
    .slide img {
        height: auto;
        min-height: 200px;
    }
}

 /* wellcome message */
 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.content {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    padding-right: 20px;
}

.image-container {
    flex: 0 0 300px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2841;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 10px;
}

h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.signature {
    margin-top: 20px;
    font-weight: 600;
}

.position {
    margin-top: 5px;
    font-weight: 500;
}

.read-more-btn {
    display: inline-block;
    background-color: #0d6b0d;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    margin-top: 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #074c07;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .image-container {
        margin-top: 30px;
        max-width: 100%;
    }
}



/* services section */
.services-section {
    padding: 50px 0;
    background-color: #f0ffe0;
    width: 100%;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.services-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 100px;
    height: 4px;
    background-color: #ffc107;
    margin: 0 auto 20px;
}

.services-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.view-all-btn {
    display: inline-block;
    background-color: #006400;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 10px;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #004d00;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-header {
    background-color: #e62e00;
    padding: 15px;
    color: white;
    text-align: center;
}

.green-header {
    background-color: #009933;
}

.service-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.service-content {
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Overlay styles for hover effect */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 46, 0, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.green-overlay {
    background-color: rgba(0, 153, 51, 0.85);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.service-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.get-details-btn {
    display: inline-block;
    background-color: white;
    color: #009933;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.get-details-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.service-footer {
    text-align: center;
    padding: 0;
}

.service-btn {
    display: block;
    background-color: #009933;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.green-btn {
    background-color: #009933;
}

.service-btn:hover {
    background-color: #007722;
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ffc107;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .service-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .view-all-btn {
        position: static;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .services-row {
        gap: 20px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .service-image {
        height: 220px;
    }
}

/* end services section */


/* calucaltor*/

/* Final Complete CSS for Sahakari EPI Calculator and Feedback Page with Equal Containers */

:root {
    --primary-color: #009933;
    --primary-dark: #007722;
    --secondary-color: #00cc44;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.25s ease;
}

/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*  */
/* body {
   
    color: var(--dark-color);
    line-height: 1.5;
    min-height: 100vh;
    padding: 10px;
} */ 

/* Main Layout Structure */
.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px;
}

/* Equal width sections */
.left-section, .right-section {
    flex: 1 1 48%;
    min-width: 280px;
}

/* Common Card Styles - Equal size */
.feedback-container, .card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 15px auto;
}

.feedback-container:hover, .card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Header Styles - Equal height */
header, .feedback-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.2rem;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: white;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    color: white;
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Content Areas - Equal height */
.calculator-body, .feedback-body {
    padding: 1.2rem;
    min-height: 450px;
    max-height: 75vh;
    overflow-y: auto;
}

/* Form Sections */
.form-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-section-title svg {
    margin-right: 0.4rem;
    width: 18px;
    height: 18px;
}

/* Form Controls - Equal heights */
.form-group {
    margin-bottom: 0.8rem;
    position: relative;
}

.input-float {
    position: relative;
}

.input-float input, 
.input-float select, 
.input-float textarea {
    width: 100%;
    height: 40px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
    transition: var(--transition);
}

.input-float textarea {
    height: 80px;
    resize: vertical;
}

.input-float label {
    position: absolute;
    left: 0.8rem;
    top: 0.7rem;
    padding: 0 0.2rem;
    background-color: transparent;
    transition: var(--transition);
    pointer-events: none;
    color: #6c757d;
    font-size: 0.95rem;
}

.input-float input:focus,
.input-float select:focus,
.input-float textarea:focus,
.input-float input:not(:placeholder-shown),
.input-float select:not([value=""]),
.input-float textarea:not(:placeholder-shown) {
    border-color: var(--primary-color);
    background-color: white;
    outline: none;
}

.input-float input:focus ~ label,
.input-float select:focus ~ label,
.input-float textarea:focus ~ label,
.input-float input:not(:placeholder-shown) ~ label,
.input-float select:not([value=""]) ~ label,
.input-float textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.6rem;
    font-size: 0.75rem;
    background-color: white;
    padding: 0 0.3rem;
    color: var(--primary-color);
}

/* Rating Stars */
.rating-title {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin-right: 0.2rem;
    transition: var(--transition);
}

.rating label svg {
    width: 100%;
    height: 100%;
    fill: #e4e5e9;
    transition: var(--transition);
}

.rating input:checked ~ label svg {
    fill: var(--accent-color);
}

.rating label:hover svg,
.rating label:hover ~ label svg {
    fill: var(--accent-color);
}

/* Calculator Specific */
.tab-container {
    display: flex;
    margin-bottom: 1.2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.tab {
    flex: 1;
    padding: 0.7rem;
    text-align: center;
    background-color: #f1f3f5;
    color: #495057;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.tab.active {
    background-color: var(--primary-color);
    color: white;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

input, select {
    width: 100%;
    height: 40px;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8f9fa;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(0, 153, 51, 0.1);
}

.input-suffix {
    position: absolute;
    right: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.form-col {
    flex: 1;
}

/* Equal Buttons */
.btn, button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 1.2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn:hover, button[type="submit"]:hover {
    background: linear-gradient(to right, var(--primary-dark), #006622);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn:active, button[type="submit"]:active {
    transform: translateY(1px);
}

/* Result Container */
.result-container {
    margin-top: 1.2rem;
    padding: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: none; /* Initially hidden */
    background-color: white;
    transition: var(--transition);
    width: 100%;
}

.result-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem;
}

.result-heading {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 700;
}

.result-body {
    padding: 1.2rem;
}

.result-value-container {
    text-align: center;
    margin-bottom: 1.2rem;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.result-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.result-explanation {
    background-color: #f8f9fa;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--accent-color);
}

.additional-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.result-item {
    background-color: #f8f9fa;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.result-item-value {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.result-item-label {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Tooltip Styles */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #6c757d;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    margin-left: 4px;
    cursor: help;
    transition: var(--transition);
}

.info-icon:hover {
    background-color: var(--primary-color);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #343a40;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    font-weight: normal;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #343a40 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Range Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
    padding: 0;
    margin: 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 4px;
}

/* Notification Styles */
.notification {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    margin-top: 0.8rem;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.6rem;
}

.notification-content {
    flex: 1;
    font-size: 0.9rem;
}

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Responsive styles */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
        padding: 5px;
    }
    
    .left-section, .right-section {
        flex: 1 1 100%;
    }
    
    .feedback-container, .card {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    header, .feedback-header {
        padding: 1rem;
        min-height: auto;
    }
    
    .calculator-body, .feedback-body {
        padding: 1rem;
        min-height: auto;
    }
    
    .result-value {
        font-size: 1.8rem;
    }
    
    .additional-results {
        grid-template-columns: 1fr;
    }
    
    .btn, button[type="submit"] {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .form-section-title {
        font-size: 0.9rem;
    }
    
    .input-float input, 
    .input-float select, 
    .input-float textarea,
    input, select {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .result-value {
        font-size: 1.6rem;
    }
    
    .result-explanation {
        font-size: 0.85rem;
    }
    
    .tooltip-text {
        width: 180px;
        margin-left: -90px;
    }
}
/* calculator end */

footer
.footer-separator {
    height: 3px;
    background: linear-gradient(to right, transparent, #009933, transparent);
    margin: 40px 0 0;
}

/* Footer styling */
.site-footer {
    background-color: #f8f8f8;
    padding: 40px 0 0;
    font-family: 'Mukta', sans-serif;
    position: relative;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: #009933;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background-color: #009933;
}

/* Officer in footer */
.footer-officer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-officer-photo {
    width: 70px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.footer-officer-info h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #333;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.footer-icon {
    color: #009933;
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
}

/* Footer address */
.footer-address {
    margin-top: 5px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-links li {
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #009933;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #009933;
}

/* Social icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin {
    background-color: #0A66C2;
}

.youtube {
    background-color: #FF0000;
}

.viber {
    background-color: #665CAC;
}

.whatsapp {
    background-color: #25D366;
}

/* Banking Apps */
.banking-apps {
    margin: 20px 0;
}

.banking-apps h4 {
    font-size: 14px;
    margin: 0 0 10px;
    color: #444;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.app-button:hover {
    background-color: #444;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 14px;
    margin: 0 0 10px;
    color: #444;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 8px 12px;
    background-color: #009933;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.newsletter-form button:hover {
    background-color: #007722;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #f1f1f1;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #009933;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-container {
        gap: 20px;
    }
    
    .footer-column {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-column {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

