 body {
            font-family: bookman-old;
            margin: 0;
            padding: 0;
        }
        .spacer {
    height: 20px; /* Adjust for vertical spacing */
    width: 100%; /* Optional, ensures it spans the full width */
}

  /* Adjust the curly bracket image for mobile */
    .curly-bracket {
        max-width: 80%; /* Make it more flexible for smaller screens */
        margin-top: 10px;
    }
    
    
.header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: white;
            height: 55px;
                 }
             .scrolled {
                 position: fixed;
                 top: 0;
                 left: 0;
                 width: 100%;
                 z-index: 1000;
                }
             @media (max-width: 768px) {
                 .scrolled {
                     display: none;
                 }
             }
             
             
             
       .logo img {
            max-height: 80px;
        }
     @media (max-width: 768px) {
    .logo img {
        max-height: 60px; /* Reduced height for mobile devices */
    }
}
/* Extra Small Devices (e.g., phones) */
@media (max-width: 480px) {
    .logo img {
        max-height: 60px; /* Further reduce height for very small screens */
    }
}




        .menu-container {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            flex-grow: 1;
        }
        .menu-container ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            }
        .menu-container ul li {
            margin: 0 15px;
             }
        .menu-container ul li a {
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            color: darkblue;
            padding: 10px 15px;
            border: 2px solid transparent;
            transition: all 0.3s ease-in-out;
            
        }
        .menu-container ul li a:hover {
            color: white;
            background-color: darkblue;
            border-color: #007BFF;
        }
    .corporate-login {
            display: flex;
            align-items: center;
            color: darkblue;
            text-decoration: none;
            font-size: 18px bold;
            margin-right: 30px;
            }
             .corporate-login i {
            margin-right: 10px;
            font-size: 30px;
            color: darkblue;
            width: 30px;
            height: 30px;
        }
        .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index:1100;
}
.hamburger span {
    display: block;
    height: 3px;
    background: darkblue;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.close-btn {
    display: none;
}
/* Mobile View */
@media (max-width: 768px) {
  .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background-color: white;
        z-index: 1000;
        padding: 0 ;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }
   .menu-container {
        display: none;
      display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%; /* Hide the menu initially */
    width: 75%;
    height: 100%;
    background-color: white;
    border-left: 1px solid #ddd;
    box-shadow: -2px 0px 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out; /* Smooth sliding effect */
    z-index: 1000;
    padding: 20px;
    }
    .menu-container.open {
     right: 0;
    }
    .menu-container ul {
        flex-direction: column;
        list-style-type: none;
        padding: 0;
        margin-top: 30px;
        width: 100%;
    }
.menu-container ul li {
        margin: 10px 0;
    }
     .menu-container ul li a {
        text-decoration: none;
        font-size: 18px;
        color: darkblue;
    }

    .corporate-login-mobile {
        display: block;
        margin-top: 20px;
         }
    
    .corporate-login {
        font-size: 16px;
        color: darkblue;
        text-decoration: none;
    }

    .hamburger {
        display: flex;
       
    }
    .close-btn {
         display: flex;
         font-size: 24px;
         color: darkblue;
         cursor: pointer;
         position: absolute;
         left: 20px;
         top: 10px;
        }
     
     body.overflow-hidden {
         overflow: hidden;
     }
     
}




.content-section {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            background-color: #f4f4f4;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        
        }
         .content-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: column;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .left-content h1 {
            font-size: 2.5em;
            margin-bottom: 30px;
            font-weight: bold;
            text-align: center;
            color: black;
            padding: 20px;
            border-radius: 8px;
            display: inline-block;
           
        }
        .left-content p {
            color: black;
            font-size: 20px;
            line-height: 1.6;
            text-align: left;
            max-width: 1200px;
            margin-left: 40px;
            margin-right: 40px;
            margin-bottom: 15px;
        }
        .welcome-to-color {
            color: gold;
            font-family: Georgia, serif ;
            font-size: 35px;
        }
        .elshaddai-fireworks-color {
            color: darkblue;
            font-family: 'Great Vibes', cursive;
            font-size: 50px;
        }
/* Mobile styles */
@media (max-width: 768px) {
    .content-inner {
        flex-direction: column;
        text-align: center;
        margin-top: 60px;
       
    }
    .left-content h1 {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 10px;
        
    }

    .left-content p {
        font-size: 15px;
        margin: 10px 20px;
        text-align: justify;
        
    }
    .welcome-to-color {
            color: gold;
            font-family: Georgia, serif ;
            font-size: 25px;
            
        }
        .elshaddai-fireworks-color {
            color: darkblue;
            font-family: 'Great Vibes', cursive;
            font-size: 40px;
  
        }
        
}





.about-section {
            display: flex;
            align-items: center;
            text-align: center;
            background-color: white;
            padding: 20px;
            box-sizing: border-box;
        }
        .about-inner {
            max-width: 1200px;
            margin: 0 auto;
            
        }
        .about-heading {
            font-size: 36px;
            font-family: 'Great Vibes', cursive;;
            color: darkblue;
            margin-bottom: 40px;
            font-weight: bold;
           
        }
        .about-subcontent {
            font-size: 20px;
            line-height: 1.6;
            color: #333;
            text-align: left;
            margin-left: 40px;
            margin-right: 40px;
        }
        
        .row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
     
}
.column {
    flex: 1 1 calc(25% - 20px);
    margin: 0 10px;
}
.sub-heading {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    color: darkblue;
    position: relative;
    
}
.sub-heading::after {
    content: '';
    display: block;
    width: 80%;
    height: 3px;
    background-color: darkblue;
    margin-top: 5px;
    position: absolute;
    left: 0;
}

.sub-content {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
   
}
    /* Mobile View */
@media (max-width: 768px) {
    .about-section {
        padding: 15px;
    }

    .about-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
.about-subcontent {
        font-size: 18px;
        margin-left: 0px;
        margin-right: 0px;
        text-align: justify;
       
    }
  .row {
        flex-direction: column;
        gap: 20px;
    }
 .column {
        flex: 1 1 100%;
        margin: 10px;
    }
.sub-heading {
        font-size: 20px;
    }
.sub-content {
        font-size: 14px;
    }
}






/* General Styles for Services Section */
.services-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
   
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
   
   
}
.services-heading {
    font-size: 36px;
    font-family: 'Great Vibes', cursive;;
    color: darkblue;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
    
}
/* Service Box */
.service-box {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: calc(33.333% - 20px);
    transition: all 0.3s ease-in-out;
   
}
.service-box:hover {
            color: white;
            background-color: darkblue;
            
            }
            
.service-icon {
    width: 110px;
    height: 90px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
   
}
.service-box:hover .service-icon {
        filter: brightness(0) invert(1); /* This will turn the icon white on hover */
    }
   .service-box:hover .service-title,
    .service-box:hover .service-description {
        color: #fff; /* Change text color to white on hover */
    }

    .service-title {
        font-size: 18px;
        margin-top: 10px;
        color: #333;
        transition: color 0.3s ease;
    }
 .service-description {
        font-size: 15px;
        color: #777;
        margin-top: 10px;
        transition: color 0.3s ease;
    }

    .service-box:hover {
        transform: translateY(-5px); /* Optional: adds a slight lift effect on hover */
    }
    
     /* Mobile View */
@media (max-width: 768px) {
  
    
    /* Adjust heading size for mobile */
    .services-heading {
        font-size: 36px;
    }
     /* Adjust services container and box for mobile */
    .services-container {
        flex-direction: column;
        gap: 15px;
        margin-top: -60px;
    }
 .service-box {
        flex: 1 1 100%;  /* Stacks services vertically */
        max-width: 100%;  /* Full-width */
    }
 .service-icon {
        width: 90px;
        height: 70px;
    }
 .service-title {
        font-size: 16px;
    }
 .service-description {
        font-size: 14px;
    }
}





.videos-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 10px;
}

.videos-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
    margin-top: 30px;
    
}

.video-box {
    display: flex; /* Changed to flex for horizontal layout */
    flex-direction: row; /* Arrange image and video side by side */
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    padding: 20px;
   
    
}

.video-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center; /* Title in the center */
    width: 100%;
    position: absolute;
    right: 0;
   
    
    
}

.video-image {
    flex: 1; /* Image takes up remaining space */
    text-align: center;
    padding: 10px;
  
}

.video-image img {
    width: 100%;
    max-width: 400px; /* Ensure the image fits within the container */
    border-radius: 10px;
    margin-top: 100px;
}

.video-content {
    flex: 1; /* Video takes up remaining space */
    text-align: center;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 100px;
    
}

.video-placeholder img {
    width: 100%;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    font-size: 30px;
    padding: 10px 20px;
    border-radius: 50%;
}

.video-player {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 0 auto;
    
}

/* Mobile View */
@media (max-width: 768px) {
    
     .videos-container {
        gap: 20px; /* Reduce gap between video boxes */
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .video-box {
        flex-direction: column; /* Stack image and video vertically */
        align-items: center;
        width: 100%; /* Make it flexible to fit the screen */
        max-width: 90%; /* Restrict max width */
        padding: 15px;
        height: auto; /* Allow flexible height */
    }

    .video-title {
        font-size: 20px; /* Adjust title size */
        text-align: center;
        position: relative;
    }

    .video-image,
    .video-content {
        flex: none; /* Remove flex to allow full width */
        width: 100%; /* Full width for mobile */
        text-align: center;
    }

    .video-image img,
    .video-placeholder,
    .video-player {
        max-width: 100%; /* Ensure images and videos fit the screen */
        width: 100%;
        height: auto;
        min-width: unset; /* Remove min-width restriction */
        margin-top: 20px; /* Reduce margin for better alignment */
    }

    .play-button {
        font-size: 24px; /* Slightly smaller play button */
        padding: 8px 16px;
    }
}

   
   
   

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #f1f1f1;
    text-align: center;
}
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-heading {
    font-size: 36px;
    font-family: 'Great Vibes', cursive;;
    color: darkblue;
    margin-bottom: 40px;
    font-weight: bold;
   }

.contact-subcontent {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}
/* Contact Details Section */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
/* Individual Contact Item Box */
.contact-item-box {
    flex: 1 1 calc(25% - 20px); /* Adjust to 3 boxes per row */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: calc(25% - 20px); /* Adjust max width */
}
.contact-item-box:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.contact-item-box i {
    font-size: 30px;
    color: darkblue;
    margin-bottom: 15px;
}
.contact-item-box h3 {
    font-size: 20px;
    color: darkblue;
    margin-bottom: 10px;
}
.contact-item-box p {
    font-size: 16px;
    color: #333;
}
.contact-item-box p a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s ease;
}
.contact-item-box p a:hover {
    color: darkblue;
}
/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-inner {
        text-align: center;
        padding: 15px;
    }
.contact-heading {
        font-size: 36px; /* Smaller heading size */
        margin-bottom: 20px;
    }
.contact-subcontent {
         font-size: 18px;
        margin-left: 0px;
        margin-right: 0px;
        text-align: justify;
     }
.contact-details {
        flex-direction: column; /* Stack items vertically */
        gap: 15px; /* Adjust spacing between items */
    }
.contact-item-box {
        flex: 1 1 100%; /* Full width for each item */
        max-width: 100%;
    }
.contact-item-box i {
        font-size: 24px; /* Adjust icon size */
    }
  .contact-item-box h3 {
        font-size: 18px; /* Adjust title size */
    }
.contact-item-box p {
        font-size: 14px; /* Adjust description size */
    }
}
/* Responsive Design for Extra Small Screens */
@media (max-width: 480px) {
    .contact-heading {
        font-size: 36px; /* Smaller heading size for small screens */
    }
 .contact-subcontent {
        font-size: 18px;
        margin-left: 0px;
        margin-right: 0px;
        text-align: justify;
        text-align: left;
    }
.contact-item-box {
        padding: 15px; /* Adjust padding */
    }
}




.butterfly {
    width: 50px; /* Adjust the size */
    height: auto;
    animation: float 3s ease-in-out infinite; /* Optional floating effect */
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    
}



.map-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.map-heading {
     font-size: 36px;
    font-family: 'Great Vibes', cursive;;
    color: darkblue;
    margin-bottom: 40px;
    font-weight: bold;
   }
.map-container iframe {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border: 0;
    margin: 0 auto;
    display: block;
    margin-top: 50px;
}
/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .map-heading {
        font-size: 36px;
    }
 .map-container iframe {
        width: 100%;
        height: 300px; /* Adjust height for smaller screens */
    }
}
@media screen and (max-width: 480px) {
    .map-heading {
        font-size: 36px;
    }

    .map-container iframe {
        height: 250px;
    }
}




.go-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: gold;
        color: darkblue;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        font-size: 24px;
        opacity: 0.7;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
 .go-to-top:hover {
        opacity: 1;
        transform: scale(1.1);
    }
     /* Mobile view adjustments */
    @media screen and (max-width: 768px) {
        .go-to-top {
          position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: darkblue;
        color: gold;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        font-size: 24px;
        opacity: 0.5;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
       .go-to-top:hover {
        opacity: 1;
        transform: scale(1);
    }
    }
     @media screen and (max-width: 480px) {
       .go-to-top {
          position: fixed;
        bottom: 20px;
        right: 10%;
        width: 50px;
        height: 50px;
        background-color: darkblue;
        color: gold;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        font-size: 24px;
        opacity: 0.5;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
       .go-to-top:hover {
        opacity: 1;
        transform: scale(1);
    }
    }
    
    
    
    
    
    .sticky-chat-widget {
     position: fixed;
      bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column; /* Default direction */
    align-items: flex-end;
    gap: 10px;
    transition: all 0.3s ease;
    }
    .sticky-chat-widget.active {
     flex-direction: column; /* Icons move above the toggle button */
         }
.chat-widget-icon {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}
.chat-widget-icon.active {
    opacity: 1;
    transform: scale(1);
}
/* WhatsApp Icon */
.whatsapp {
    background-color: #25d366; /* WhatsApp green */
}
.whatsapp:hover {
    background-color: #128c7e;
}
/* Call Icon */
.call {
    background-color: #007bff; /* Call icon blue */
}
.call:hover {
    background-color: #0056b3;
}
.chat-widget-icon i {
    font-size: 24px;
    line-height: 50px; /* Vertically center the icon */
}
/* Toggle Button */
.chat-toggle {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}
.chat-toggle:hover {
    background-color: #0056b3;
}
     /* Mobile View */
@media (max-width: 768px) {
    .sticky-chat-widget {
        bottom: 10px;
        left: 10px;
        gap: 8px; /* Reduce gap for smaller screens */
        margin-bottom: 80px;
          }
.chat-widget-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px; /* Smaller icons */
        align-items: center;
        justify-content: center;
        display: flex;
        text-decoration: none;
        }
 .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 24px; /* Smaller toggle button */
     }
    }
    