
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #212121;
            background-color: #f7f8fa;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 2rem;
            transition: box-shadow 0.3s ease;
        }

        header:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #222;
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 1px;
        }

        /* Navigation Styles */
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        nav ul li a:hover {
            color: #4a6fa5;
            transform: scale(1.1);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #4a6fa5;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                z-index: 99;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }

            nav ul li a {
                font-size: 1.1rem;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 98;
            display: none;
        }

        .overlay.active {
            display: block;
        }

    .container {
      max-width: 900px;
      width: 85%;
      margin: 48px auto;
      background: #fff;
      box-shadow: 0 4px 18px 0 rgba(36,41,46,0.10);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      gap: 32px;
      align-items: flex-start;
      transition: box-shadow 0.3s ease;
    }
    .container:hover {
      box-shadow: 0 8px 36px 0 rgba(36,41,46,0.15);
    }
    .author-details {
      flex: 1 1 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f3f5fa;
      border-radius: 10px;
      padding: 24px 12px;
      box-sizing: border-box;
      transition: background-color 0.3s ease;
    }
    .author-details:hover {
      background-color: #e9eef9;
    }
    .author-photo {
     max-width: 200px;

     width: 40vw;
     height: auto;
     overflow: hidden;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
    }
    .author-photo img {
      max-width: 100%;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 50%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: block;
    }
    .author-photo img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    .author-name {
      font-family: 'Noto Serif Devanagari', serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 7px;
      color: #212121;
    }
    .author-bio {
      font-size: 1rem;
      text-align: center;
      color: #414852;
      margin-top: 0;
      line-height: 1.6;
    }
    .about-section {
      flex: 2 1 350px;
      background: none;
      padding: 8px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-title {
      font-family: 'Noto Serif Devanagari', serif;
      font-size: 1.18rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #13315c;
      letter-spacing: 0.5px;
      padding: 4px 8px;
      border-radius: 6px;
      background-color: #e6f0ff;
      transition: background-color 0.3s ease;
    }
    .about-title:hover {
      background-color: #c7dbff;
    }
    .about-text {
      font-size: 1.01rem;
      color: #282c34;
      line-height: 1.8;
      text-align: left;
    }
    @media (max-width: 1024px) {
      .container {
        width: 95%;
        padding: 24px;
      }
      .author-photo {
        max-width: 180px;
        width: 35vw;
        height: auto;
      }
    }
@media (max-width: 700px) {
      .container {
        flex-direction: column;
        gap: 24px;
        padding: 18px;
      }
      .author-details,
      .about-section {
        width: 100%;
        padding: 16px 0;
      }
      .author-photo {
        max-width: 100%;
        width: 100%;
        height: auto;
      }
    }

/* Additional responsiveness for smaller devices */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 12px;
  }
  .author-photo {
    max-width: 100%;
    width: 100%;
  }
  .author-bio {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  .about-title {
    font-size: 1rem;
    padding: 3px 6px;
  }
  .about-text {
    font-size: 0.9rem;
  }
  nav ul {
    gap: 1rem;
  }
  nav ul li a {
    font-size: 0.9rem;
  }
  .footer-container {
    padding: 0 1rem;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-nav ul {
    gap: 0.5rem;
  }
  .footer-nav a {
    font-size: 0.9rem;
  }
}

/* Fixes for mobile content visibility */
@media (max-width: 768px) {
  /* Ensure body and html have proper height and overflow */
  html, body {
    height: auto !important;
    overflow: visible !important;
    min-height: 100vh !important;
  }

  /* Ensure main container and sections have auto height and visible overflow */
  .container,
  .section,
  .author-details,
  .about-section,
  .scope-container,
  .timeline-container,
  .policy-container,
  .guidelines-container,
  .contact-container {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    display: block !important;
    min-height: auto !important;
  }

  /* Prevent header and nav overlap */
  header {
    position: fixed;
    width: 100%;
    z-index: 101;
  }

  nav {
    top: 60px !important; /* Adjust if header height changes */
    z-index: 100 !important;
  }

  /* Overlay should cover entire viewport */
  .overlay {
    height: 100vh !important;
  }

  /* Force all sections to be visible */
  .section {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

    /* Medium devices (tablets) */
    @media (min-width: 481px) and (max-width: 768px) {
      .container {
        width: 95%;
        padding: 20px;
      }
      .author-photo {
        max-width: 160px;
        width: 40vw;
      }
      .author-bio {
        font-size: 1rem;
      }
      .about-title {
        font-size: 1.1rem;
      }
      .about-text {
        font-size: 1rem;
      }
      nav ul li a {
        font-size: 1rem;
      }
      .footer-logo {
        font-size: 1.3rem;
      }
      .footer-nav a {
        font-size: 1rem;
      }
    }

    /* Larger tablets and small laptops */
    @media (min-width: 769px) and (max-width: 1024px) {
      .container {
        width: 90%;
        padding: 24px;
      }
      .author-photo {
        max-width: 180px;
        width: 35vw;
      }
      .author-bio {
        font-size: 1.05rem;
      }
      .about-title {
        font-size: 1.15rem;
      }
      .about-text {
        font-size: 1.05rem;
      }
      nav ul li a {
        font-size: 1.05rem;
      }
      .footer-logo {
        font-size: 1.4rem;
      }
      .footer-nav a {
        font-size: 1.05rem;
      }
    }

    /* Large desktops */
    @media (min-width: 1200px) {
      .container {
        max-width: 1100px;
      }
      .author-photo {
        max-width: 220px;
        width: 30vw;
      }
      .author-bio {
        font-size: 1.1rem;
      }
      .about-title {
        font-size: 1.2rem;
      }
      .about-text {
        font-size: 1.1rem;
      }
      nav ul li a {
        font-size: 1.1rem;
      }
      .footer-logo {
        font-size: 1.6rem;
      }
      .footer-nav a {
        font-size: 1.1rem;
      }
    }
  
   
    /* scope of journal */

        /* Scope Section */
        .scope-container {
            max-width: 1000px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: box-shadow 0.3s ease;
        }

        .scope-container:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a2a4a;
            padding: 6px 12px;
            border-radius: 6px;
            background-color: #e6f0ff;
            border-left: 6px solid #4a6fa5;
            transition: background-color 0.3s ease;
        }

        .section-title:hover {
            background-color: #c7dbff;
        }

        .scope-list {
            color: #444;
            font-size: 1rem;
            padding-left: 1.5rem;
            list-style: none;
        }

        .scope-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.8rem;
            line-height: 1.6;
        }

        .scope-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #4a6fa5;
            font-weight: bold;
            font-size: 1.1rem;
            top: 0;
        }
/* Response and Review time */
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        /* Timeline Section */
        .timeline-container {
            max-width: 1000px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: box-shadow 0.3s ease;
        }

        .timeline-container:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a2a4a;
            padding: 6px 12px;
            border-radius: 6px;
            background-color: #e6f0ff;
            border-left: 6px solid #4a6fa5;
            transition: background-color 0.3s ease;
        }

        .section-title:hover {
            background-color: #c7dbff;
        }

        .timeline-content {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
        }

        .timeline-content p {
            margin-bottom: 1rem;
        }

/* Publication and policy  */
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        /* Policy Section */
        .policy-container {
            max-width: 1000px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: box-shadow 0.3s ease;
        }

        .policy-container:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #0d224e;
            text-align: center;
            padding: 6px 12px;
            border-radius: 6px;
            background-color: #e6f0ff;
            border-left: 6px solid #4a6fa5;
            transition: background-color 0.3s ease;
        }

        .section-title:hover {
            background-color: #c7dbff;
        }

        .subsection-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 1.5rem 0 1rem 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.5rem;
            padding-left: 8px;
            border-left: 4px solid #4a6fa5;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .subsection-title:hover {
            background-color: #d0e1ff;
        }

        .policy-content {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
        }

        .policy-list {
            padding-left: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .policy-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .policy-list li::before {
            color: #4a6fa5;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* Author Guidelines */
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        /* Guidelines Container */
        .guidelines-container {
            max-width: 1000px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
        }

        /* Title Styles */
        .main-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a2a4a;
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid #4a6fa5;
            font-family: 'Roboto', sans-serif;
        }

        /* Section Styles */
        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a2a4a;
            margin: 2.2rem 0 1.2rem 0;
            border-left: 6px solid #4a6fa5;
            padding-left: 1rem;
            border-radius: 6px;
            background-color: #e6f0ff;
            transition: background-color 0.3s ease;
        }

        .section-title:hover {
            background-color: #c7dbff;
        }

        .article-type {
            font-size: 1.1rem;
            font-weight: 700;
            color: #3a5169;
            margin: 1.8rem 0 0.5rem 0;
            display: flex;
            align-items: center;
            cursor: default;
        }

        .article-type:before {
            content: "•";
            color: #4a6fa5;
            font-size: 1.6rem;
            margin-right: 0.8rem;
        }

        /* Content Styles */
        .article-description {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
            margin-left: 2.2rem;
            margin-bottom: 1.2rem;
            padding-left: 0.5rem;
            border-left: 2px solid #e0e0e0;
            transition: background-color 0.3s ease;
        }

        .article-description:hover {
            background-color: #f0f4ff;
        }

        .sub-points {
            margin-left: 3.5rem;
            margin-bottom: 1rem;
        }

        .sub-points li {
            margin-bottom: 0.6rem;
            position: relative;
            list-style-type: none;
            padding-left: 1.2rem;
        }

        .sub-points li:before {
            content: "›";
            color: #4a6fa5;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .guidelines-container {
                padding: 1.8rem;
                opacity: 1;
                transform: translateY(0);
            }
            .article-description,
            .sub-points {
                margin-left: 1.2rem;
            }
        }

        /* Manuscript giudlenss */
          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        /* Main Container */
        .guidelines-container {
            max-width: 1000px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
        }

        /* Title Styles */
        .main-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #4a6fa5;
        }

        /* Section Headers */
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 2.2rem 0 1.2rem 0;
            border-left: 4px solid #4a6fa5;
            padding-left: 1rem;
        }

        .subsection-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 1.8rem 0 1rem 0;
            position: relative;
            padding-left: 1.2rem;
            border-left: 4px solid #4a6fa5;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .subsection-title:before {
            color: #4a6fa5;
            font-size: 1.6rem;
            position: absolute;
            left: 0;
            top: 0;
        }

        .subsection-title:hover {
            background-color: #d0e1ff;
        }

        .subsubsection-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #445566;
            margin: 1.5rem 0 0.8rem 0;
            display: flex;
            align-items: center;
        }

        .subsubsection-title:before {
            content: "›";
            color: #4a6fa5;
            font-size: 1.4rem;
            margin-right: 0.6rem;
        }

        /* Content Styles */
        .guidelines-list {
            padding-left: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .guidelines-list li {
            margin-bottom: 0.8rem;
            position: relative;
            list-style-type: none;
            padding-left: 1.5rem;
            transition: background-color 0.1s ease;
        }

        .guidelines-list li:hover {
            background-color: #f0f4ff;
        }

        .guidelines-list li:before {
            content: "•";
            color: #4a6fa5;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .format-example {
            background-color: #f8f9fa;
            border-left: 3px solid #4a6fa5;
            padding: 1rem;
            margin: 1rem 0;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .guidelines-container {
                padding: 1.8rem;
            }
            .subsection-title {
                padding-left: 1rem;
            }
        }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navbar Hover */
nav ul li a:hover {
    transform: scale(1.05);
}

/* Click Micro-interactions */
nav ul li a.clicked {
    transform: scale(0.95);
}

/* Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form */
.contact-container {
    max-width: 1000px;
    margin: 2rem auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    color: #000000;
}

.contact-container .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2a4a;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: #e6f0ff;
    border-left: 6px solid #4a6fa5;
    text-align: left;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item h3 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #f5b700;
    flex-shrink: 0;
}

/* Location Icon */
.location-icon {
    background: url('data:image/svg+xml;utf8,<svg fill="%23f5b700" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z"/></svg>') no-repeat center center;
    background-size: contain;
}

/* Email Icon */
.email-icon {
    background: url('data:image/svg+xml;utf8,<svg fill="%23f5b700" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>') no-repeat center center;
    background-size: contain;
}

/* Phone Icon */
.phone-icon {
    background: url('data:image/svg+xml;utf8,<svg fill="%23f5b700" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>') no-repeat center center;
    background-size: contain;
}

/* Editor Icon */
.editor-icon {
    background: url('data:image/svg+xml;utf8,<svg fill="%23f5b700" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') no-repeat center center;
    background-size: contain;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(239, 237, 237, 0.902);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f5b700;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.send-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .send-btn {
        align-self: center;
    }
}

/* Footer Styles */
footer {
    background-color: #f7f8fa;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.contact-container section{
    width: 30px;
    height: 50px;;
}

.fill-form-btn {
    background-color: #20bad8;
    color: white;
    border: none;
    /* justify-content: center; */
    justify-items: center;
    /* align-items: center; */
    padding: 15px 80px;
    /* padding-left: 50px; */

    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.fill-form-btn:hover {
    background-color: #0a6a73;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.footer-nav a {
    text-decoration: none;
    color: #4a6fa5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #333;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}
