* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* If you previously adjusted the font-size for scaling, revert or tweak as needed */
    font-size: 100%; 
    --bg-color: #ffffff;
    --text-color: #333;
    --underline-color: #60041c;
    --underline-hover-color: gray;
    --accent-color: #007BFF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --cta-background: linear-gradient(135deg, #60041c, #7a1f2d);
    --cta-text-color: #fff;
    --footer-bg-color-start: #ffffff;
    --footer-bg-color-end: #f9f9f9;
    --tweet-bg-color-start: #f3f3f3;
    --tweet-bg-color-end: #e6e6e6;
    --secondary-text-color: #777;
    --divider-color: #ddd;
    --underline-hover-color: gray;
}

.dark-mode {
    --bg-color: #1e1e1e;
    --text-color: #f5f5f5;
    --underline-color: #ffffff;
    --underline-hover-color: #cccccc;
    --accent-color: #1e90ff;
    --shadow-color: rgba(255, 255, 255, 0.1);
    --cta-background: #2c2c2c; 
    --cta-text-color: #f5f5f5;
    --footer-bg-color-start: #1e1e1e;
    --footer-bg-color-end: #2b2b2b;
    --tweet-bg-color-start: #2c2c2c;
    --tweet-bg-color-end: #3a3a3a;
    --secondary-text-color: #ccc;
    --divider-color: #444;
    --underline-hover-color: #999;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: var(--bg-color);
    width: 100%;
    box-shadow: 0 2px 5px var(--shadow-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    max-width: 1980px; /* 10% more width than the original 1800px */
    width: 100%; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1980px;
    max-width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar-left a,
.navbar-right a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.navbar-right a.cta {
    text-decoration: none;
    position: relative;
}

.navbar-right a.cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: var(--underline-color);
    transition: background-color 0.3s ease;
}

.navbar-right a.cta:hover::after {
    background-color: var(--underline-hover-color);
}

.hamburger {
    display: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logo img {
    max-width: 150px;
    height: auto;
}

#logo-light {
    display: inline;
}

#logo-dark {
    display: none;
}

.dark-mode #logo-light {
    display: none;
}

.dark-mode #logo-dark {
    display: inline;
}

#favicon-light {
    display: inline;
}

#favicon-dark {
    display: none;
}

.dark-mode #favicon-light {
    display: none;
}

.dark-mode #favicon-dark {
    display: inline;
}

.dark-mode .navbar {
    padding: 20px 5%;
}

.dark-mode-toggle span {
    display: inline-block;
    margin-right: 5px; 
    vertical-align: middle; 
}

.dark-mode-toggle {
    position: fixed;
    top: 85px;
    right: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    line-height: normal;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
}

.dark-mode-toggle:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.dark-mode .cta-section {
    background-color: #2c2c2c;
    color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode .cta-section h1 {
    color: #fff;
}

.dark-mode .cta-section p {
    color: #ccc;
}

.dark-mode .cta-button.primary {
    background-color: #1e90ff;
    color: #fff;
    box-shadow: 0 4px 8px rgba(30, 144, 255, 0.3);
    border: none;
}

.dark-mode .cta-button.primary:hover {
    background-color: #1c86e3;
    transform: scale(1.05);
}

.dark-mode .cta-button.secondary {
    background-color: transparent;
    color: #1e90ff;
    border: 2px solid #1e90ff;
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode .cta-button.secondary:hover {
    background-color: #1e90ff;
    color: #fff;
    transform: scale(1.05);
}

.dark-mode .footer {
    background-color: #333;
    color: #f5f5f5;
}

.dark-mode .footer a {
    color: #ccc;
}

.dark-mode .footer a:hover {
    color: #1e90ff;
}

.dark-mode .footer .x-twitter-icon {
    fill: #fff;
    transition: fill 0.3s;
}

.dark-mode .footer .footer-social a {
    color: #ccc;
}

.dark-mode .footer .footer-social a:hover {
    color: #1e90ff;
}

html {
    scroll-behavior: smooth;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 650px; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-section .image-container {
    width: 74%; /* Adjust width ratio between text and image */
    height: 100%;
    background-color: #ccc;
    background-image: url('/images/home-03.jpg');
    background-size: cover;
    background-position:right bottom; /* Positions the image starting from the bottom */
    background-repeat: no-repeat;
}

.hero-section .text-container {
    width: 26%; /* Adjust width ratio */
    height: 100%;
    padding: 20px 5%; /* Add spacing for text */
    background-color: #000; /* Background color for contrast */
    color: #fff; /* Text color */
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box; /* Include padding in width */
}

.hero-section .text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.hero-section .text-container p {
    font-size: 1rem;
    line-height: 1.6;
}


.services-section {
    padding: 20px 5%;
    margin: 80px auto 0 auto;
    max-width: 1980px;
    width: 100%;
    background-color: var(--bg-color);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.services-intro h2,
.services-intro .intro-p1,
.services-intro .intro-p2 {
    grid-column: 1 / 2;
}

.services-intro-image,
.mobile-intro-image {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
}

.services-image {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mobile-intro-image {
    display: none;
}

ul.intro-details.no-symbols > li {
    list-style-type: none; /* Ensure no default bullet points */
    padding-left: 0; /* Remove padding */
}

/* Remove the dash (or any pseudo-element) specifically for intro-details list items */
ul.intro-details.no-symbols > li::before {
    content: none; /* Completely removes the dash or bullet */
}

.text ul {
    list-style-type: none; /* Removes default bullet points */
    padding: 0; /* Removes padding */
    font-size: 1.1rem; /* Sets font size */
    line-height: 1.6; /* Improves readability with line height */
    margin-bottom: 20px; /* Adds spacing between lists */
}

.text h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}


.detailed-version {
    display: block;
}
.simple-version {
    display: none;
}

.image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.contact-section {
    grid-column: 1 / 2;
    margin: 40px 0 70px;
    text-align: left;
    order: var(--order);
}

.contact-icons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: 333;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.social-icon img {
    width: 50%;
    height: 50%;
}

.icon-light {
    display: inline;
}

.icon-dark {
    display: none;
}

.dark-mode .icon-light {
    display: none;
}

.dark-mode .icon-dark {
    display: inline;
}

.cta-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.footer {
    background: linear-gradient(135deg, var(--footer-bg-color-start), var(--footer-bg-color-end));
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    max-width: 1980px;
    margin: 0 auto;
}

.footer h4 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 calc(16.66% - 20px);
}

.footer-column.empty-column {
    flex: 1 1 calc(16.66% - 20px);
}

.footer-column.tweet-card {
    background: linear-gradient(135deg, var(--tweet-bg-color-start), var(--tweet-bg-color-end));
    border-radius: 12px;
    padding: 20px;
    color: var(--text-color);
    margin: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-column.tweet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer .tweet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.footer .tweet-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.footer .tweet-content {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
    color: var(--secondary-text-color);
}

.footer .tweet-card strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.footer .x-icon {
    position: absolute;
    right: 20px;
    top: 24%;
    transform: translateY(-50%);
    margin-left: auto;
}

.footer .x-twitter-icon {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: fill 0.3s;
}

.footer-divider {
    height: 1px;
    background-color: #444;
    width: auto;
    margin: 100px auto 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 5% 20px 0;
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
}

.footer-bottom .rights-reserved {
    flex: none;
    margin: 0;
    text-align: left;
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex: none;
}

.footer-bottom .social-icons {
    margin-left: auto;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        margin: 0 auto 0 0;
        max-width: 130px;
        padding-left: 5%;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        left: 20px;
        top: 20px;
        z-index: 1001;
        cursor: pointer;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s, opacity 0.3s;
        position: relative;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 75%;
        max-width: 300px;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow-color);
        top: 0;
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1000;
    }

    .mobile-menu.active {
        transform: translateX(0);
        z-index: 1003;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-color);
        padding: 15px 20px;
        font-size: 1em;
        display: block;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
    }

    .mobile-menu-overlay.active {
        display: block;
    }
   
    .dark-mode-toggle {
        right: 5px;
    }

    .dark-mode-toggle span {
        margin-right: 5px; 
    }

    .hero-section {
       display: none;
}

    .services-section {
        margin-top: 20px;
    }

    .grid {
      display: flex;
      flex-direction: column;
      margin: 20px 10px 0;
    }
 
    .text .intro-p1 {
      order: 2;
      font-size: 1.1rem;
      line-height: 1.5;
      text-align: left;
      margin: 15px 0 15px;
    }
 
    .text .mobile-intro-image {
      display: block;
      order: 3;
    }
  
    .mobile-intro-image img {
      margin: 40px 0 40px;
      padding: 0;
      width: 100%; 
      max-width: 100%;
      height: auto;
    }

    .text .intro-p2 {
      order: 4;
      font-size: 1.1rem;
      line-height: 1.5;
      text-align: left;
      margin: 5px 0 0;
    }

    .services-intro-image {
      display: none; 
    }

    .services-image img {
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100% !important;
      border-radius: 0;
      order: 5;
    }

    .services-text {
      order: 6;
      font-size: 1rem;
      line-height: 1.5;
      text-align: left;
      margin: 5px 0  0;
    }

    .text h2 {
      font-size: 1.5rem;
      line-height: 1.3;
    }

    .detailed-version {
        display: none;
    }
    .simple-version {
        display: block;
    }

    .contact-section {
      order: 7;
      margin: 0;
    }

    .social-icons {
      width: 30px;
      height: 30px;
    }
    
    .contact-icons {
      justify-content: left;
      margin: 0 0 15px;
    }

    .cta-button {
      padding: 10px 18px;
      font-size: 14px;
      font-weight: bold;
      margin: 0 0 70px;
    }

    .footer {
      background: #f0f0f0;
      max-width: 100%;
      margin: 0;
    }

    .footer-columns {
      flex-direction: column;
      gap: 20px;
      margin-left: 15px;
    }

    .footer h4 {
      font-size: 1.1rem;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      max-width: 100%;
      margin: 0;
    }

    .footer-bottom .social-icons {
      margin-top: 10px;
      margin-left: 0;
    }

    .footer .tweet-card {
      width: 90%;
      flex-direction: column;
      align-items: center;
    }

    .footer .tweet-header {
      margin-right: auto;
    }

    .footer .tweet-logo {
      margin: 0 auto 10px;
    }

    .footer .tweet-content {
      font-size: 1rem;
    }

   .back-to-top {
       font-size: 1rem; 
       font-weight: normal; 
       right: 5px;
   }

}



