/* ==========================================
   NN One Air Conditioner - Main Stylesheet
   ========================================== */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #ff6b35;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #0ea5e9;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   SCROLLBAR STYLING
   ========================================== */

/* Hide scrollbar while keeping functionality */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   UTILITY ANIMATIONS
   ========================================== */

.slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

.slide-in-delay-1 {
    animation: slideIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-in-delay-2 {
    animation: slideIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }
.delay-4 { animation-delay: 0.8s !important; }
.delay-5 { animation-delay: 1s !important; }
.delay-6 { animation-delay: 1.2s !important; }

.hero-icon-animate {
    animation: float 3s ease-in-out infinite;
}

.floating-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* ==========================================
   NAVBAR STYLING
   ========================================== */

.navbar-animate {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-out;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.nav-link {
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 5px;
}

.nav-link:hover {
    color: var(--warning-color) !important;
    transform: translateY(-2px);
}

.offcanvas {
    width: 100% !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    padding: 0 !important;
    margin-top: 60px;
}

.hero-carousel-inner {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-slide {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.3);
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    padding: 80px 0 40px 0;
    animation: slideInUp 0.8s ease-out;
}

.page-header h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   SERVICE CARDS
   ========================================== */

.service-card {
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
}

.service-card:hover::before {
    top: 0;
    left: 0;
}

.service-icon {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ==========================================
   DIVIDER
   ========================================== */

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #ff6b35);
    border-radius: 2px;
    margin-bottom: 30px;
}

/* ==========================================
   FEATURE ITEMS
   ========================================== */

.feature-item {
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-left-color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(10px);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-circle {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ==========================================
   TEAM CARDS
   ========================================== */

.team-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.team-icon {
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    animation: float 2s ease-in-out infinite;
}

/* ==========================================
   ACHIEVEMENT CARDS
   ========================================== */

.achievement-card {
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover::after {
    left: 100%;
}

.achievement-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   REVIEW CARDS
   ========================================== */

.review-card {
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}

.stars i {
    font-size: 1.2rem;
}

/* ==========================================
   SHADOW HOVER
   ========================================== */

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-5px);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0099ff);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #ff6b35);
    border: none;
    color: white;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    animation: float 2s ease-in-out infinite;
}

.contact-benefit {
    padding: 15px;
    border-radius: 8px;
    background: rgba(13, 110, 253, 0.05);
    transition: all 0.3s ease;
}

.contact-benefit:hover {
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttonsw{
     position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: bounce 2s ease-in-out infinite;
}

.call-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}


/* ==========================================
   PRICING CARDS
   ========================================== */

.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.2);
    border-color: var(--primary-color);
}

.price {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 10px;
}

/* ==========================================
   FORM STYLING
   ========================================== */

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    color: var(--text-color);
    margin-bottom: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-top: 2px solid var(--primary-color);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .hero-carousel-inner {
        min-height: 400px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .page-header {
        padding: 60px 0 30px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel-inner {
        min-height: 300px;
    }

    .hero-slide {
        min-height: 300px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .offcanvas {
        width: 100% !important;
    }

    .row {
        margin-bottom: 20px;
    }
}

/* ==========================================
   TEXT UTILITIES
   ========================================== */

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.glow {
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

/* ==========================================
   MISC ELEMENTS
   ========================================== */

.service-detail {
    border-left: 4px solid var(--primary-color);
}

.service-icon-box {
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
}

.value-card {
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
}

.about-image {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   SCROLLBAR HIDE UTILITY
   ========================================== */

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


 body {
      font-family: 'Poppins', sans-serif;
      background: #f0f7ff;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* demo content style (just to show page flow) */
    .hero-section {
      background: linear-gradient(135deg, #0b2b40 0%, #1a5f7a 100%);
      padding: 80px 20px;
      text-align: center;
      color: white;
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      animation: fadeInUp 1s ease;
    }

    .hero-section p {
      font-size: 1.2rem;
      margin-top: 15px;
      opacity: 0.9;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---------- FOOTER STYLES (Premium & Animated) ---------- */
    .footer {
      background: linear-gradient(100deg, #071b25 0%, #0a2e3f 100%);
      color: #eef4ff;
      position: relative;
      overflow: hidden;
      margin-top: auto;
      font-family: 'Poppins', sans-serif;
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
      transition: all 0.3s;
    }

    /* Animated wavy top border */
    .footer-wave {
      position: absolute;
      top: -2px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      transform: rotate(180deg);
    }

    .footer-wave svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 60px;
    }

    .footer-wave .shape-fill {
      fill: #f0f7ff;
    }

    /* floating cool breeze animation (background effect) */
    .footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: -30%;
      width: 160%;
      height: 100%;
      background: radial-gradient(circle at 20% 40%, rgba(72, 187, 220, 0.08) 0%, rgba(0, 40, 60, 0) 70%);
      pointer-events: none;
      animation: driftBreeze 16s infinite linear;
    }

    @keyframes driftBreeze {
      0% {
        transform: translateX(-10%) translateY(0%) rotate(0deg);
      }
      50% {
        transform: translateX(5%) translateY(-3%) rotate(1deg);
      }
      100% {
        transform: translateX(-10%) translateY(0%) rotate(0deg);
      }
    }

    .footer-container {
      position: relative;
      z-index: 3;
      padding: 3rem 1rem 1.5rem 1rem;
    }

    /* footer headings */
    .footer h5 {
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 1.4rem;
      position: relative;
      display: inline-block;
      color: #fff;
    }

    .footer h5:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 45px;
      height: 3px;
      background: #3bc9db;
      border-radius: 4px;
      transition: width 0.4s ease;
    }

    .footer h5:hover:after {
      width: 70px;
    }

    /* footer links & list */
    .footer-links {
      list-style: none;
      padding-left: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      text-decoration: none;
      color: #cbd5e6;
      font-weight: 400;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a i {
      font-size: 0.85rem;
      transition: transform 0.3s, color 0.2s;
    }

    .footer-links a:hover {
      color: #6ed4ff;
      transform: translateX(6px);
    }

    .footer-links a:hover i {
      transform: translateX(4px);
      color: #6ed4ff;
    }

    /* Social Icons - animated */
    .social-icons {
      display: flex;
      gap: 18px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      font-size: 1.3rem;
      color: #eef4ff;
      transition: all 0.35s ease;
      backdrop-filter: blur(2px);
      text-decoration: none;
    }

    .social-icon:hover {
      background: #2aa9c9;
      color: #fff;
      transform: translateY(-8px) scale(1.07);
      box-shadow: 0 12px 20px rgba(0, 160, 210, 0.3);
    }

    /* contact info animation */
    .contact-info p {
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: 0.2s;
    }

    .contact-info p i {
      width: 32px;
      height: 32px;
      background: rgba(59, 201, 219, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .contact-info p:hover i {
      background: #3bc9db;
      color: #071b25;
      transform: rotate(360deg) scale(1.1);
    }

    /* Newsletter subscription - animated */
    .newsletter-group {
      display: flex;
      margin-top: 15px;
      border-radius: 60px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: 0.25s;
    }

    .newsletter-input {
      flex: 1;
      border: none;
      padding: 12px 18px;
      font-size: 0.9rem;
      outline: none;
      background: #f4fafe;
      color: #0a2e3f;
      font-weight: 500;
    }

    .newsletter-input:focus {
      background: #ffffff;
    }

    .newsletter-btn {
      background: #2aa9c9;
      border: none;
      padding: 0 20px;
      color: white;
      font-weight: 600;
      transition: all 0.3s;
      cursor: pointer;
    }

    .newsletter-btn:hover {
      background: #ffb347;
      letter-spacing: 0.5px;
    }

    .newsletter-message {
      font-size: 0.75rem;
      margin-top: 10px;
      opacity: 0;
      transition: opacity 0.3s;
      color: #9ed9ff;
    }

    /* brand area */
    .brand-footer h3 {
      font-weight: 800;
      font-size: 2rem;
      background: linear-gradient(130deg, #FFFFFF, #7ad0e6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
    }

    .tagline {
      font-size: 0.85rem;
      opacity: 0.8;
      border-left: 3px solid #3bc9db;
      padding-left: 12px;
      margin-top: 10px;
    }

    /* copyright bar */
    .copyright {
      background: rgba(0, 0, 0, 0.35);
      text-align: center;
      padding: 1rem 1rem;
      font-size: 0.85rem;
      border-top: 1px solid rgba(59, 201, 219, 0.2);
      margin-top: 30px;
      position: relative;
      z-index: 2;
    }

    .copyright a {
      color: #8dd0ff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .copyright a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    /* floating particles (snowflakes / cool air effect) */
    .cool-particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      animation: floatUp 6s infinite ease-in;
    }

    @keyframes floatUp {
      0% {
        transform: translateY(0) scale(0);
        opacity: 0;
      }
      20% {
        opacity: 0.6;
      }
      80% {
        opacity: 0.4;
      }
      100% {
        transform: translateY(-200px) scale(1);
        opacity: 0;
      }
    }

    /* responsiveness */
    @media (max-width: 768px) {
      .footer-container {
        padding: 2rem 1rem 1rem;
      }
      .footer h5:after {
        width: 35px;
      }
      .brand-footer h3 {
        font-size: 1.8rem;
      }
      .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
      }
    }

