:root {
    --primary-color: #201E43;
    /* Blue */
    --secondary-color: #134B70;
    /* Green */
    --accent-color: #171717;
    /* Red */
    --neutral-color: #EEEEEE;
    /* Light Gray */
    --white-base: #ffffff;
}

/* Example usage */
body {

    padding: 0px !important;
    margin: 0px !important;
    background-color: var(--accent-color);
}


@font-face {
    font-family: 'DMSerifDisplay';
    src: url('fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




@font-face {
    font-family: 'RubicBoldItalic';
    /* Name your font */
    src: url('fonts/Rubik/Rubik-BlackItalic.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}

@font-face {
    font-family: 'Sansation_Bold';
    src:
        url('fonts/Plaster/Plaster-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Sansation_Regular';
    /* Name your font */
    src: url('fonts/sansation/Sansation_Regular.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}

@font-face {
    font-family: 'Sansation_Light';
    /* Name your font */
    src: url('fonts/sansation/Sansation_Light.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}



h1,
h4,
h5 {
    color: white;
    font-family: 'Sansation_Bold', serif;
    
 background: linear-gradient(45deg, #005d51, #00a266,#259725);


  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

    /* Fallback font */
}

.hero-section{
    margin-top: 10% !important;
}
h1{
    
    font-size:5rem !important;
}

p {
    color: white !important;
    font-family: 'DMSerifDisplay', serif;
}

.ceo-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* Makes the image circular */
    border: 3px solid var(--primary-color);
    /* Adds a green border */
    object-fit: cover;
    /* Ensures the image fits well within the circle */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Adds a shadow for better visibility */
}


.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}

.zerorow {


    margin: 0px !important;
    padding: 0px !important;
}

.customnavcolor {

    background-color: var(--primary-color);
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.customfooter {}

.owl-carousel .item {
    position: relative;
    text-align: center;
    color: white;
    background-color: transparent !important;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
}

.owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* #201E43 with 50% alpha */
    z-index: 1;
}

.owl-carousel .item * {
    position: relative;
    z-index: 2;
    /* Ensures content appears above the overlay */
}

/* Styles for the overlay */
.item {
    position: relative !important;
}

.overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    /* Dark semi-transparent background */
    color: white;
    padding: 20px;
    padding-top: 10% !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: left !important;
    z-index: 999 !important;
    width: 100% !important;
    height: 100% !important;
}

.slideimages {
    z-index: 1 !important;
}

.small-heading {
    font-size: 16px;
    margin-bottom: 10px;
}

.big-heading {
    font-size: 8.5vw !important;
    font-family: 'DMSerifDisplay', serif;
    /* Fallback font */
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 5px !important;
}

.description {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    width: 10% !important;
}

.btn:hover {
    background-color: var(--primary-color);
}

.contactnumber {
    border: 1px solid #201E43;
    border-radius: 10px !important;
}


/* Navbar Styling */
#navbarNav {}

.navbar {

    background-color: transparent !important;

}

.navbar.transparent {
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar.colored {
    background-color: #2c2f34 !important;
    /* Solid color */

}

.navbar .nav-link {
    color: white !important;
    font-weight: 600;
     font-family: 'Sansation_Regular', serif;
      letter-spacing: 2px !important;
        font-size: 14px !important;
}

.navbar.colored .nav-link {
    color: var(--primary-color);
    font-family: 'Sansation_Regular', serif;
    letter-spacing: 2px !important;
}

/* Owl Carousel Images */
.owl-carousel .item img {
    width: 100%;
    height: auto;
}


body {
    margin: 0;
    padding: 0;
}

/* For testing scroll effect */
.content {

    background-color: #f8f9fa;
}



.tileone {
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 1 !important;
    border-radius: 1%;

}

.tileone img {
    width: 260%;
    /* Show 40% of the image */
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    border-radius: 10% !important;
    z-index: -1 !important;
}

.tileone h5 {
    color: white;
}

.tiletwo {
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 1%;


}

.tiletwo h5 {
    color: white;
}

.uppertext {
    z-index: 5 !important;

}


.tiletwo img {

    width: 280%;
    /* Show 40% of the image */
    height: auto;
    position: absolute;
    top: 10%;
    left: 40%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    border-radius: 10% !important;
    z-index: -1 !important;
}

.alphabackground {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.alphabackground:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.circular-image {
    width: 350px;
    /* Adjust size as needed */
    height: 350px;
    /* Keep the same as width to make it circular */
    object-fit: cover;
    /* Ensures the image fits within the circle */
    border-radius: 50%;
    /* Makes the image circular */
    border: 5px solid var(--primary-color);
    /* Blue border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    /* Attractive shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

.circular-image:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2);
    /* Intensify shadow on hover */
}


.logo-container {
    position: relative;
    width: 300px;
    /* Adjust as needed */
    height: 100px;
    /* Adjust as needed */
    overflow: hidden;
    /* Ensures no content spills out */


}

.bg-image-column {
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 200px;
    /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* Text color */
}

.custoninput {
    border: 2px solid var(--accent-color);
    font-weight: 600 !important;

}

.genbutton {

    background-color: var(--primary-color);
    border: none !important;
    color: var(--accent-color);
    border-radius: 5px !important;
    padding: 10px !important;
    color: white !important;
    font-family: 'Sansation_Bold', sans-serif !important;
    letter-spacing: 5px !important;
}

.newsletterbutton {
    background-color: black !important;
    border: none !important;
    color: white !important;
    border-radius: 5px !important;
    padding: 10px !important;
}

.copytext {
    color: white !important;
    font-size: .8rem !important;
}

.navlogo {
    width: 60% !important;
    margin-left: 20% !important;
}

.serviceblocktext {
    color: white !important;
}



/* Modal Background */
.modal-content {
    background-color: #2c2f34;
    color: white;
    border: none;
    border-radius: 8px;
}

/* Modal Header */
.modal-header {
    border-bottom: 1px solid white;
}

.modal-title {
    color: white;
}

/* Close Button */
.btn-close {
    filter: invert(1);
}

/* Form Elements */
.form-label {
    color: white;
}

.form-control {
    background-color: #40444b;
    color: white;
    border: 1px solid white;
}

.form-control:focus {
    background-color: #40444b;
    color: white;
    border-color: white;
    box-shadow: 0 0 5px white;
}

/* Buttons */
.btn-primary {
    background-color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #d86927;
}

.btn-secondary {
    background-color: #44484f;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a5e65;
}

/* Modal Footer */
.modal-footer {
    border-top: 1px solid white;
}



/* Styles for screens smaller than 576px wide (extra small devices) */
@media (max-width: 575.98px) {
    
    h1{
    
    font-size:3rem !important;
}
.hero-section{
    margin-top: 25% !important;
}
    .headerlogo {
        margin-right: 0% !important;
    }

    .big-heading {
        font-size: 2rem !important;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .navlogo {
        display: none !important;
    }

    .logo-container {
        position: relative;
        width: 300px;
        /* Adjust as needed */
        height: 0px;
        /* Adjust as needed */
        overflow: hidden;
        /* Ensures no content spills out */


    }

    .overlay {
        padding-top: 3% !important;
        line-height: 10px !important;
    }

    .genbutton {

        background-color: var(--primary-color);
        border: none !important;
        color: var(--accent-color);
        border-radius: 5px !important;
        padding: 10px !important;
        width: 50% !important;
    }
    #braindiv {
        margin-top: 30% !important; 
        height: 400px;
    }

    .business-hike {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 20px;
        text-align: center;
        border: 1px solid white;
        border-radius: 10px !important;
        width: 80% !important;
        margin-left: 10% !important;
    }
    
    .business-hike i {
        font-size: 12rem !important;
        /* Large icon */
            
  background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

        /* Rocket color */
    }
    
    .business-hike p {
        font-size: 20px;
        /* Adjust text size */
        font-weight: bold;
        margin-top: 10px;
        color: #333;
        /* Text color */
    }

}

/* Styles for screens larger than or equal to 576px wide (small devices) */
@media (min-width: 576px) {



    .row-with-particles {
        position: relative;
        width: 100%;
        height: 10px !important;
        /* Adjust as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    #braindiv {
        margin-top: 30% !important; 
        height: 400px;
    }
    
      .business-hike {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 20px;
        text-align: center;
        border: 1px solid white;
        border-radius: 10px !important;
        width: 80% !important;
        margin-left: 10% !important;
    }
    
    .business-hike i {
        font-size: 12rem !important;
        /* Large icon */
                    
  background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
        /* Rocket color */
    }
    
    .business-hike p {
        font-size: 20px;
        /* Adjust text size */
        font-weight: bold;
        margin-top: 10px;
        color: #333;
        /* Text color */
    }


}

/* Styles for screens larger than or equal to 768px wide (medium devices) */
@media (min-width: 768px) {
    

     .business-hike {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 20px;
        text-align: center;
        border: 1px solid white;
        border-radius: 10px !important;
        width: 80% !important;
        margin-left: 10% !important;
    }
    
    .business-hike i {
        font-size: 12rem !important;
        /* Large icon */
                    
  background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
        /* Rocket color */
    }
    
    .business-hike p {
        font-size: 20px;
        /* Adjust text size */
        font-weight: bold;
        margin-top: 10px;
        color: #333;
        /* Text color */
    }
}

/* Styles for screens larger than or equal to 992px wide (large devices) */
@media (min-width: 992px) {
    .row-with-particles {
        position: relative;
        width: 100%;
        height: 200px;
        /* Adjust as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    #braindiv {
        margin-top: 70% !important; 
        height: 400px;
    }

    .business-hike {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 20px;
        text-align: center;
        border: 1px solid white;
        border-radius: 10px !important;
        width: 70% !important;
        margin-left: 15% !important;
    }
    
    .business-hike i {
        font-size: 16rem !important;
        /* Large icon */
                    
  background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
        /* Rocket color */
    }
    
    .business-hike p {
        font-size: 20px;
        /* Adjust text size */
        font-weight: bold;
        margin-top: 10px;
        color: #333;
        /* Text color */
    }


}

/* Styles for screens larger than or equal to 1200px wide (extra large devices) */
@media (min-width: 1200px) {
    
     .row-with-particles {
        position: relative;
        width: 100%;
        height: 200px;
        /* Adjust as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    #braindiv {
        margin-top: 70% !important; 
        height: 400px;
    }

    .business-hike {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 20px;
        text-align: center;
        border: 1px solid white;
        border-radius: 10px !important;
        width: 70% !important;
        margin-left: 15% !important;
    }
    
    .business-hike i {
        font-size: 16rem !important;
        /* Large icon */
                   
  background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
        /* Rocket color */
    }
    
    .business-hike p {
        font-size: 20px;
        /* Adjust text size */
        font-weight: bold;
        margin-top: 10px;
        color: #333;
        /* Text color */
    }

    
}



#headermargin{
    
  height: 100px !important;
    
}


.gradient {
    background-image: linear-gradient(to left, #171717 40%, white 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
background: linear-gradient(45deg, #005d51, #00a266,#259725);
    color: white;
    font-size: 30px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-box {
    text-align: center;
}



.bg-color-div {
    background-color: #2c2f34;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    /* Ensures z-index takes effect */
    z-index: 2;
}


.half-dot-pattern {

    position: relative;
    overflow: hidden;
}

.half-dot-pattern::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    /* Cover half of the div */
    height: auto !important;
    background-image: radial-gradient(#005d51 10%, transparent 11%);
    background-size: 10px 10px;
    z-index: 1 !important;
}

.contact-form {
    position: relative;
    background: #2c2f34;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
     
    border-radius: 10px;
    z-index: -2;
}

.contact-form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2c2f34;
    border-radius: 8px;
    margin: 1px;
    z-index: -1;
}

.contact-form h2 {
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid transparent;
    background: #2c2f34;
    color: white;
    border-radius: 4px;
}

.contact-form button {
    background-color: var(--accent-color);
    cursor: pointer;
}

.contact-form button:hover {
    background: white;
    color: #2c2f34;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

.malluzone-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 5vw;
    font-weight: bold;
    padding: .5vw 1vw;
    border: 0.2vw solid #2c2f34;
    border-radius: 1vw;
    background-color: var(--accent-color);
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'DMSerifDisplay', serif;
    letter-spacing: 2px !important;
}

.malluzone-logo .globe {
    font-size: 2vw;
    background:  linear-gradient(45deg, #005d51, #00a266,#259725);
      -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
    position: absolute;
    top: .5vw;
    right: .7vw;
}

.malluzone-logo .m {
     background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

    font-size: 4vw;
    flex-shrink: 0;
    line-height: 1;
}

.malluzone-logo .rest {
    color: white;
    flex-shrink: 0;
    font-size: 2vw;
    line-height: 1;

}

@media (max-width: 600px) {
    .malluzone-logo {
        font-size: 6vw;
        padding: 3vw 5vw;
        border-radius: 2vw;
        max-width: 100%;
    }

    .malluzone-logo .m {
        font-size: 8vw;
    }

    .malluzone-logo .rest {
        font-size: 6vw;
    }

    .malluzone-logo .globe {
        font-size: 5vw;
        top: 2vw;
        right: 2vw;
    }
}




#particles-js {
    position: absolute;
    width: 100%;
    height: 850px !important;
    z-index: 0;
    top: 0;
    left: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.service-card {
    transition: transform 0.3s ease-in-out;
    background: transparent;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 20px;
}

.service-card:hover {
    transform: scale(1.05);
}

.icon {
    font-size: 40px;
    color: white;
}

.service-details {
    text-align: left;
    font-size: 14px;
    color: white !important;
}

.btn-select {
    margin-top: 10px;
}

.basicmallubutton {
      
  background: linear-gradient(45deg, #005d51, #00a266,#259725);

  

    color: white;
    padding: 10px 15px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-family: 'Sansation_Light', serif;
    margin-top: 20% !important;
}

.basicmallubutton:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.price_tag {
    font-family: 'DMSerifDisplay', serif;
    font-size: 3rem !important;
}

p {
    letter-spacing: 2px !important;
}

.services_list {
     background: linear-gradient(45deg, #005d51, #00a266,#259725);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
    letter-spacing: 1px !important;
}



.what_we_do {
    font-family: 'Sansation_Light', serif;
    letter-spacing: 2px !important;
}

/* Base styles for the image */
.logo {
    display: block;
    max-width: 100%; /* Ensures image doesn’t overflow */
    height: auto; /* Maintains aspect ratio */
}

/* Default class for 17-inch computer screens (assuming ~1920px width) */
.logo-default {
    width: 17%; /* Matches your original style */
}

/* Class for larger screens (e.g., 17-inch at higher resolutions) */
.logo-large {
    width: 15%; /* Slightly smaller for better fit on larger displays */
}

/* Class for tablets (25% width as requested) */
.logo-tablet {
    width: 25%;
}

/* Class for mobile devices */
.logo-mobile {
    width: 30%; /* Wider for visibility on small screens */
}

/* Media Queries for Responsive Scaling */

/* Large screens (desktops, 17-inch, >= 1200px) */
@media only screen and (min-width: 1200px) {
    .logo-default {
        width: 17%; /* Maintain 17% for 17-inch screens */
    }
    .logo-large {
        width: 15%;
    }
   
}

/* Tablets (600px to 1199px) */
@media only screen and (min-width: 600px) and (max-width: 1199px) {
    .logo-default {
        width: 45%; /* As requested for tablets */
    }
    .logo-tablet {
        width: 25%;
    }

}

/* Mobile devices (< 600px) */
@media only screen and (max-width: 599px) {
    .logo-default {
        width: 50%; /* Wider for mobile visibility */
    }
    .logo-mobile {
        width: 28%;
    }
    

    
}

/* Additional scaling class for flexibility */
.logo-custom-scale {
    width: 20%; /* Example of a custom scale */
}

