:root {
            --primary-color: #01ab02;
            --secondary-color: #fd0002;
            --text-color: #ffffff;
            --dark-bg: #0a2c3c;
            --light-bg: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

       
.whatsapp_chat_container {
height:auto;background:
transparent;position:
fixed;bottom:10px;right:10px;z-index:99999;
}

.whatsapp_chat_container .whatsapp_chat_options {
    display: none;
}

.whatsapp_chat_container .whatsapp_chat_btn {
height:60px;width:60px;border-radius:50%;background:#25D366;transition: 0.5s;cursor:pointer;;
-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.whatsapp_chat_container .whatsapp_chat_btn i{
  font-size:25px;transition: 0.5s
}

.whatsapp_chat_container:hover .whatsapp_chat_options {
    display: block;

}

.whatsapp_chat_container:hover .whatsapp_chat_btn {
height:0;width:0;

}

.whatsapp_chat_container:hover .whatsapp_chat_btn i {
  font-size:0;

}        

         .header-logo {
            height: 60px;
            margin-right: 10px;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 4px;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: #e00000;
            border-color: #e00000;
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

              
         .image-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 10px;
  }

  .image-container img {
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    object-position: top center;
  }

  /* Single image styling */
  .image-container img:only-child {
    flex: 1 1 100%;
    height: 400px;
    width: 100%;
  }

  /* Two images styling */
  .image-container img:nth-child(1):nth-last-child(2),
  .image-container img:nth-child(2):nth-last-child(1) {
    height: 300px !important;
    width: calc(50% - 5px);
    flex: 1 1 calc(50% - 5px);
   
  }

  /* Three or more images styling */
  .image-container img:nth-child(1):nth-last-child(n+3),
  .image-container img:nth-child(2):nth-last-child(n+2),
  .image-container img:nth-child(3):nth-last-child(n+1) {
    height: 300px !important;
    width: calc(33.333% - 7px);
    flex: 1 1 calc(33.333% - 7px);
  }


        /* Section */
         .section-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title-left {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--secondary-color);
    }

       .section-title-left:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        /* transform: translateX(-50%); */
        width: 80px;
        height: 3px;
        background-color: var(--secondary-color);
    }

    .section-subtitle {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 25px auto 40px;
        line-height: 1.6;
    }

        .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

        /* Footer */
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

          /* Responsive adjustments */
                @media (max-width: 768px) {
                    .navbar-brand {
                        flex-direction: column;
                        justify-content: center;
                    }
        
                    .navbar-brand img {
                        width: 60px;
                        display: block;
                        margin: 0 auto;
                    }
        
                    .image-container {
                        flex-direction: column;
                        align-items: stretch;
                    }
        
                    .image-container img {
                        width: 100% !important;
                        height: auto !important;
                        flex: 1 1 100% !important;
                    }
        
                    .section-title {
                        font-size: 1.5rem;
                    }
        
                    .section-title-left {
        
                        font-size: 1.5rem;
        
                    }
                }

         @media (max-width: 576px) {

         }
        
        
        