/* Basic styles for the body and other elements */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

html, body {
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

header .container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space between logo and nav */
}

header {
    background-color: #2c2c2c;
    color: #fff; /* White text color */
    padding: 10px 0; /* Padding for top and bottom */
    height: 100px; /* Allow header height to adjust based on content */
    min-height: 80px; /* Minimum height of the header */
    border-bottom: #CC5500 3px solid; /* Orange bottom border */
    position: fixed; /* Fixed position at the top */
    width: 100%; /* Full width */
    top: 0;
    z-index: 1000; /* Ensure it's above other elements */
}

header .logo {
    flex: 1;
    max-width: 200px; /* Limit maximum width of the logo */
}

header .logo img {
    height: 130px; /* Set height of the logo image to fill its container */
    width: auto; /* Allow the width to adjust based on height */
    position: relative;
    top: -25px; /* Adjust as needed */
}

header nav {
    flex: 3;
    text-align: right;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex; /* Default to flexbox layout */
}

header nav ul li {
    display: inline;
    margin-left: 20px;
    position:relative;
    left:400px;
    top:-20px;
}

header nav ul li a {
    color: #ffffff !important; /* Set your desired font color */
    text-decoration: none;
    font-weight: bold;
    font-size: larger;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

/* Media query for mobile view */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        position:relative;
        height:100px;
        overflow:visible;
            z-index: 1000; /* Ensure it's above other elements */

        
        
    }

    header .logo, .zoho-headerlogo {
        max-width: 100px; /* Adjust logo size for mobile */
        margin-bottom: 10px;
        display: flex; /* Ensure logos are displayed as flex items */
        justify-content: center; /* Center the logos horizontally */
    }

    header .logo img, .zoho-headerlogo img {
        max-height: 50px; /* Increase logo image size for mobile */
        width: auto; /* Let the width adjust automatically */
        position:relative;
        top:0px;
        left:-150px;
    }
   header .zoho-headerlogo img{
        position:relative;
        top:-40px;
        left:-150px; 
    }

    header nav ul {
        display: none; /* Hide menu items by default on mobile */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 80px; /* Adjust to match header height */
        left: 0;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    

    header nav ul.show {
        display: flex; /* Show the menu when the 'show' class is added */
    }

    header nav ul li {
        margin-left: 0; /* Reset margin */
        margin-bottom: 10px;
        position: relative;
        left: 0px;
    }

    header nav ul li a {
        color: #fff;
        font-size: 1.2em;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 1.5em;
        color: #ffffff;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .menu-icon .fa-bars {
        display: block;
    }

    .menu-icon .fa-times {
        display: none;
    }

    .menu-icon.open .fa-bars {
        display: none;
    }

    .menu-icon.open .fa-times {
        display: block;
    }
}

/* Ensure header nav is always visible on desktop */
header nav {
    display: block;
}

.zoho-headerlogo {
    width: 100px !important; /* Adjust the width as needed */
    height: auto !important; /* Maintain aspect ratio */
    margin-top: 10px !important; /* Adjust the margin to position it below the header logo */
}

.zoho-headerlogo img {
    max-width: 100px; /* Adjust the value as needed */
    height: auto;
    position: relative;
    top: 20px;
    left: -150px;
}

@media (min-width: 769px) {
    .menu-icon {
        display: none; /* Hide the menu icon on desktop view */
    }

    header nav {
        display: block; /* Show the full nav on desktop */
    }
}


.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/*.hero-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.6); */
/*    z-index: 1;*/
/*}*/

.hero-content {
    color: #fff;
    z-index: 2;
    position: relative;
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
}

.hero-title {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: black;
}

.hero p {
    font-size: 1.5em;
    margin: 20px 0;
    color: #222222;
}

.hero .btn {
    background: #CC5500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background: #cc5200;
}

.hero .arrow-left,
.hero .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

.hero .arrow-left {
    left: 20px;
}

.hero .arrow-right {
    right: 20px;
}

@keyframes flash {
    0% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Add media query for mobile view */
@media (max-width: 768px) {
  .hero {
    display: flex; /* Enable flexbox layout */
    align-items: center; /* Vertically center content within the section */
    justify-content: center; /* Horizontally center content within the section */
    height: 300px; /* Set a desired height for the section */
    position:relative;
    top:50px;
  }
.hero .btn {
  background: #CC5500;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  width: 50%;
      position:relative;

  left:70px;
}

.hero .btn:hover {
    background: #cc5200;
}

}

section {
    padding: 50px 20px;
    text-align: center;
    position:relative;
    
}

.about, .services, .clients, .contact {
    background: #fff;
    margin-top: 20px;
    padding: 50px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about {
    background-image: url('/images/image3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.about .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: flex-start; /* Change this to move images to the left */
    align-items: flex-start;
    margin-left: 40px; /* Adjust this value to move images closer to the text */
}

.about-images img {
    max-width: 60%; /* Adjust max-width if needed */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* CSS for hover effects */
.about-content:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* CSS for fading in text on scroll */
.about.in-view .about-text,
.about.in-view .about-images {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about .about-text,
.about .about-images {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Existing styles for larger screens */
.product-hero-section {
    background-image: url('our_products.webp'); /* Replace with your image URL */
    background-size: cover; /* Adjusted to ensure the image fits within the section */
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-top: 100px;
    overflow: hidden; /* Ensure the overlay covers the entire section */
}

.product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.product-hero-section h1 {
    position: relative; /* Ensure the text is above the overlay */
    z-index: 2;
    font-size: 4em;
    font-family: 'Lato', sans-serif; /* Use Lato font */
    letter-spacing: 2px; /* Increase letter spacing */
    -webkit-text-stroke: 2px #1a2e54; /* Add black border */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
}

/* Styles for mobile devices */
@media (max-width: 768px) {
    .product-hero-section {
         height: auto; /* Further adjust the height for very small screens */
        margin-top: 30px; /* Further adjust the margin for very small screens */
        background-size: cover; /* Ensure the image covers the section */
    }

    .product-hero-section h1 {
        -size: 2em; /* Further adjust the font size for very small screens */
         position:relative;
        top:40px;

        letter-spacing: 0.5px; /* Further adjust the letter spacing for very small screens */
        -webkit-text-stroke: 0.5px black; /* Further adjust the text stroke for very small screens */
    }
}

@media (max-width: 480px) {
    .product-hero-section {
        height: auto; /* Further adjust the height for very small screens */
        padding-top: 15vh; /* Add padding to keep the content centered */
        padding-bottom: 15vh; /* Add padding to keep the content centered */
        background-size: cover; /* Adjust the background size */
    }

    .product-hero-section h1 {
        font-size: 2em; /* Further adjust the font size for very small screens */
        letter-spacing: 0.5px; /* Further adjust the letter spacing for very small screens */
        -webkit-text-stroke: 0.5px #1a2e54; /* Further adjust the text stroke for very small screens */
    }
}

.product_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    top: -70px;
}


.product-title {
    text-align: center;
    margin-bottom: 70px;
}

.product-title h2 {
    font-size: 36px;
    color: #004c97;
    position: relative;
    top: 40px;
    margin-bottom: 70px;

}

.product-title h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #004c97;
    display: block;
    margin: 10px auto 0;
    margin-bottom: 40px;

}

.product-description {
    font-size: 16px;
    color: #666;
    margin-top: 40px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    top: -70px;
}

.product {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33% - 20px);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-10px);
}

.product-content {
    padding: 20px;
}

.product h3 {
    font-size: 24px;
    color: #004c97;
    margin-bottom: 15px;
}

.product p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.product-additional-info {
    margin-bottom: 20px;
}

.product-additional-info p {
    font-weight: bold;
    color: #333;
}

.product-additional-info ul {
    list-style: none;
    padding: 0;
}

.product-additional-info ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 00-1.414 0L9 11.586 4.707 7.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0l7-7a1 1 0 000-1.414z" clip-rule="evenodd"/></svg>') no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004c97;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #003366;
}

@media (max-width: 768px) {
    .product-list {
        flex-direction: column;
    }

    .product {
        flex: 1 1 100%;
    }
}

/* Clients section styles */
.clients {
        height: 300px;

    padding: 50px 0;
    background: url('client.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    position: relative; /* Create a stacking context for pseudo-element */
}


.clients .container {
    width: 80%; /* Adjust the container width as needed */
    margin: 0 auto;
    position: relative; /* Maintain stacking context */
    z-index: 1; /* Ensure content appears above overlay */
}

.clients h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.client-logos {
    display: flex;
    justify-content: center; /* Center align logos */
    align-items: center;
}

.client-logo {
    padding: 20px; /* Adjust spacing between logos */
    transition: transform 0.3s ease; /* Add transition effect */
}

.client-logo img {
    width: 120px;
    height: auto;
}

.client-logo:hover img {
    transform: scale(1.1); /* Apply zoom-in effect on hover */
}

.testimonials {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.testimonial .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8); /* Add opacity for better readability */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.client-name {
    font-weight: bold;
    color: #555;
    font-size: 16px;
}
.operation-steps-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.how-we-operate .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}
.operation-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.operation-step {
    position: relative;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}
.step-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.step-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px 8px 0 0;
}
.step-image:hover .step-content-overlay {
    opacity: 1;
}
.step-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.zoho-partner {
    text-align: center; /* Center align the content */
}

.we-are-text {
    font-size: 1.5em; /* Increase the font size of the text */
    margin-right: 10px; /* Add space between "We Are a" and the logo */
    font-weight: bold; /* Make the text bold */
    color: #333; /* Set the text color */
    font-size: 30px;
}

.zoho-partner .zoho-logo {
    max-width: 300px; /* Increase the max-width of the logo */
    height: auto;
    filter: brightness(1.2); /* Highlight the logo */
    vertical-align: middle; /* Align the logo vertically with the text */
}

.how-we-operate {
    background-image: url('operate.jpg'); /* Replace 'your-background-image.jpg' with the path to your background image */
    background-size: cover;
    background-position: center;
    padding: 60px 0; /* Adjust padding as needed */
    text-align: center;
}

.how-we-operate .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #ffffff; /* White text color */
}
/* Responsive Styles */
@media (max-width: 768px) {
    .operation-steps {
        flex-direction: column;
    }

    .operation-step {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.9em;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 1em;
        margin-bottom: 6px;
    }

    .step-description {
        font-size: 0.8em;
    }

    .zoho-partner .we-are-text {
        font-size: 1.2em;
    }

    .zoho-partner .zoho-logo {
        max-width: 250px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .who-we-are-content {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are-item {
        min-width: 90%;
        margin-bottom: 20px;
    }
    .section-title {
        font-size: 2em;
    }

    .section-description {
        font-size: 1em;
    }
       

}
@media (max-width: 768px) {
  .who-we-are {
    background-image: url('about.jpg'); /* Mobile background */
        background-size: contain;
            background-repeat: no-repeat;
}
 .who-we-are::before {
    display: none;
  }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5em;
    }

    .section-description {
        font-size: 0.9em;
    }

    .who-we-are-item {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .icon {
        max-width: 100px;
    }
}
/* Who We Are Section Styles */
.who-we-are {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
}
.content-title {
    font-size: 24px;
    color: #CC5500;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Trebuchet MS', sans-serif;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); /* Add text shadow for highlighting */
}

.who-we-are .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive; /* Handwritten font */
}

.who-we-are-item:hover {
    transform: translateY(-5px); /* Move the item up slightly on hover */
}

.who-we-are-content {
    display: flex;
    justify-content: space-between; /* Adjust spacing between content blocks */
    align-items: center; /* Align content vertically */
}

.who-we-are-item {
    flex: 1;
    min-width: 300px;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;

}


.icon {
    max-width: 150px; /* Adjust maximum width of the icons */
    margin-bottom: 10px; /* Add space between icon and paragraph */
}
.who-we-are .section-description {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
font-family: 'Raleway', sans-serif;
    opacity: 0; /* Initially transparent */
    transition: opacity 0.5s ease; /* Add transition for smooth fade-in effect */
}

/* Default styles for .who-we-are::before */
.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('about.jpg'); /* Subtle background image */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}


.content-block {
    flex-basis: calc(33.33% - 20px); /* Adjust width of each content block */
    text-align: center; /* Center content within each block */
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.who-we-are-item,
.icon {
    animation: slideInFromBottom 0.5s ease forwards; /* Apply the animation to the text and icons */
}
.appear {
    animation: slideInFromBottom 0.5s ease forwards;
    opacity: 1; /* Make the element visible */

}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact_container {
    display: flex;
    align-items: center;
    position: relative;
    top: 60px;
    background-color: transparent;
    background-image: radial-gradient(at bottom left, #cccccc 69%, #fe890f 100%);
}
.contact_container .elementor-shape-bottom {
    position: absolute;
    bottom: -50px; /* Adjust the distance of the curve from the bottom */
    left: 0;
    width: 100%;
    height: 100px; /* Adjust the height of the curve */
    background: #cccccc; /* Color of the curve */
    z-index: -1;
}

.text-section,
.image-section {
    flex: 1;
    padding: 30px;
}

.text-section {
    text-align: left;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.contact-section {
    padding: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    top: 40px;
}

.contact-column {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.contact-column.left {
    order: 1;
    flex: 1;
}

.contact-column.right {
    order: 2;
    flex: 1;
}

h2 {
    color: #333;
    margin-bottom: 40px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

ul li {
    margin: 20px 0; /* Increase margin */
}

ul li a {
    text-decoration: none;
    color: #0066cc;
    display: flex;
    align-items: center;
}

ul li a .icon-phone,
ul li a .icon-email {
    margin-right: 10px;
}

.contact-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

input,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

button:hover {
    background: #555;
}

.text-section h1 {
    color: black;
    text-decoration: none;
    border-bottom: 2px solid #fe890f;
    display: inline-block;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.text-section p {
    color: #2c2c2c;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.text-section a.btn {
    color: #ffffff;
    background-color: #CC5500;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    margin-right: 20px;
    margin-bottom: 20px;
}

.text-section a.btn:hover {
    background-color: #fe890f;
    color: #ffffff;
}

.text-section .arrow {
    margin-left: 5px;
}

.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.chat-body {
    padding: 10px;
    max-width: 300px; /* Adjust the maximum width as needed */
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.close-btn {
    cursor: pointer;
}

.chat-icon-container {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.chat-icon img {
    width: 120px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make the image circular */
}
footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px 20px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer .col h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #CC5500;
    display: inline-block;
    padding-bottom: 5px;
}

footer .col p, footer .col a, footer .col li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    text-decoration: none;
    list-style: none;
}

footer .col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

footer iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 8px;
}

footer .request-demo input[type="email"] {
    width: calc(100% - 90px);
    padding: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 5px;
    font-size: 14px;
}

footer .request-demo button {
    padding: 6px 10px;
    border-radius: 5px;
    border: none;
    background-color: #CC5500;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
        width:87%;

}

footer .social-icons a {
    color: #ccc;
    margin-right: 10px;
    font-size: 18px;
}

footer .social-icons a:hover {
    color: #ffffff;
}

footer .copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #ccc;
}

footer .request-demo {
    grid-column: span 2;
}

@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
    }

    footer .request-demo {
        grid-column: 1;
    }

    footer .request-demo input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    footer .request-demo button {
        width: 100%;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

   
    .services .service {

        width: 100%;
        margin: 10px 0;
    }

   
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero .btn {
        padding: 8px 16px;
    }

    .services .service {
        padding: 15px;
    }
}
/* Existing styles for larger screens */
.about-hero-section {
    background-image: url('who_we_are.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-top: 100px;
    overflow: hidden; /* Ensure the overlay covers the entire section */
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.about-hero-section h1 {
    position: relative; /* Ensure the text is above the overlay */
    z-index: 2;
    font-size: 4em;
    font-family: 'Lato', sans-serif; /* Use Lato font */
    letter-spacing: 2px; /* Increase letter spacing */
    -webkit-text-stroke: 2px black; /* Add black border */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    color: white; /* Set text color to white */
}

/* Styles for mobile devices */
@media (max-width: 768px) {
    .about-hero-section {
        height: auto; /* Adjust the height for smaller screens */
        margin-top: 50px; /* Adjust the margin for smaller screens */
        background-size: cover; /* Ensure the image covers the section */
    }

    .about-hero-section h1 {
        font-size: 2.5em; /* Adjust the font size for smaller screens */
        letter-spacing: 1px; /* Adjust the letter spacing for smaller screens */
        -webkit-text-stroke: 1px black; /* Adjust the text stroke for smaller screens */
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        height: 30vh; /* Further adjust the height for very small screens */
        margin-top: 30px; /* Further adjust the margin for very small screens */
        background-size: cover; /* Ensure the image covers the section */
    }

    .about-hero-section h1 {
        font-size: 2em; /* Further adjust the font size for very small screens */
        position:relative;
        top:40px;
        letter-spacing: 0.5px; /* Further adjust the letter spacing for very small screens */
        -webkit-text-stroke: 0.5px black; /* Further adjust the text stroke for very small screens */
    }
}


.about-intro {
    padding: 20px;
    background-color: #f4f4f4;
}

.about-container_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 0px;
    position: relative;
    z-index: 2;
}

.about-intro h2, .about-team h2, .about-process h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #de7c64;
    font-family: 'Montserrat', sans-serif; /* Montserrat font */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-intro p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #fff;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3); /* Black background with 50% opacity */
    padding: 10px; /* Add padding for spacing */
    border-radius: 5px; /* Optional: Rounded corners for the background */
}

.about-process-diagram {
    text-align: center;
    padding: 20px;
}

.about-process-diagram img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.valuable-content {
    background-image: url('');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #fff; /* Set text color to white for better contrast */
    background-color: #f7faf9;
}

.core-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Center align the content */
    background-color: #f7faf9;
}

.core-container h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: black;
}

.core-container p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000;
}

.core-container ul {
    list-style: none;
    padding: 0;
    color: #de7c64;
}

.core-container ul li {
    margin-bottom: 20px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.6;
    color: #000;
}

.core-container ul li strong {
        color: #de7c64;

    font-weight: bold;
}
.highlight {
    color: #de7c64;
}


.core-container ul li i {
    position: absolute;
    left: -30px; /* Adjust the position of the icon */
    top: 0;
    font-size: 1.5em;
    color: #ff6600; /* Change the color of the icons */
}

/* Apply the font family to the headings and paragraphs */
.core-container p {
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
}

@media (max-width: 768px) {
    .about-intro {
        padding: 50px 20px; /* Reduce padding for smaller screens */
        margin-top: 50px; /* Reduce top margin for smaller screens */
    }

    .about-intro::before {
        background: rgba(0, 0, 0, 0.7); /* Darken the overlay for better contrast */
    }

    .about-container {
        margin-top: 50px; /* Reduce top margin for smaller screens */
    }

    .about-intro h2 {
        font-size: 1.8em; /* Decrease font size for headings */
        margin-bottom: 15px; /* Reduce bottom margin for headings */
    }

    .about-intro p {
        font-size: 1em; /* Decrease font size for paragraphs */
        padding: 8px; /* Reduce padding for paragraphs */
    }

    .about-process-diagram {
        padding: 10px; /* Reduce padding around process diagram */
    }

    .about-process-diagram img {
        max-width: 90%; /* Adjust maximum width for process diagram */
    }

    .valuable-content {
        padding: 30px 0; /* Adjust padding for valuable content section */
    }

    .core-container {
        max-width: 90%; /* Adjust maximum width for core container */
        margin-top: 30px; /* Reduce top margin for core container */
    }

        .core-container h2 {
        font-size: 1.5em; /* Decrease font size for headings */
        margin-bottom: 15px; /* Reduce bottom margin for headings */
        text-align: center; /* Center align the heading text */
    }

    .core-container h2 img {
        max-width: 100%; /* Ensure the image fills its container */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Ensure the image is displayed as a block element */
        margin: 0 auto; /* Center the image horizontally */
    }

    .core-container p {
        font-size: 0.9em; /* Decrease font size for paragraphs */
        margin-bottom: 20px; /* Reduce bottom margin for paragraphs */
    }

    .core-container ul li {
        font-size: 0.9em; /* Decrease font size for list items */
        margin-bottom: 15px; /* Reduce bottom margin for list items */
    }
}

/* General styles */
.services .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.zoho-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.zoho-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.zoho-column:hover {
    transform: scale(1.05);
}

.zoho-widget {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.zoho-widget:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.zoho-image {
    margin-bottom: 20px;
    width: 100px;
margin-left: 0;}

.zoho-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.zoho-widget:hover .zoho-image img {
    transform: scale(1.1);
}

.zoho-content {
    margin-bottom: 20px;
    text-align: left;
}

.zoho-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
    text-align: left;
}

.zoho-widget:hover .zoho-title {
    color: #007bff;
}

.zoho-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.zoho-button-wrapper {
    text-align: center;
}

.zoho-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: -200px;
}

.zoho-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* For mobile devices (less than 768px width) */
/* Mobile-specific styles */
.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 90px;

    padding: 0 20px;
}

/* Existing styles for larger screens */
.intro-section {
    position: relative;
    background-image: url('backgroundZoho.png');
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 300px; /* Adjust the top padding to make room for the header */
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black overlay with 50% opacity */
}
.intro-section h1 {
    position: relative; /* Ensure the text is above the overlay */
    z-index: 2;
    top:-80px;
    font-size: 4em;
    font-family: 'Lato', sans-serif; /* Use Lato font */
    letter-spacing: 2px; /* Increase letter spacing */
    -webkit-text-stroke: 2px black; /* Add black border */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    color: white; /* Set text color to white */
}

/* Styles for mobile devices */
@media (max-width: 768px) {
    .intro-section {
        margin-top: 0px; /* Adjust the top padding for smaller screens */
        height: auto; /* Adjust the height for smaller screens */
        background-size: cover; /* Ensure the image covers the section */
    }
    .intro-section h1 {
        font-size: 2.5em; /* Adjust the font size for smaller screens */
        position:relative;
        top:20px;
        letter-spacing: 1px; /* Adjust the letter spacing for smaller screens */
        -webkit-text-stroke: 1px black; /* Adjust the text stroke for smaller screens */
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding-top: 150px; /* Further adjust the top padding for very small screens */
        height: auto; /* Further adjust the height for very small screens */
        background-size: cover; /* Ensure the image covers the section */
    }
}

.intro_container {
    position: relative;
    z-index: 1;
    padding: 50px;
}


/* .intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 90px;

    padding: 0 20px;
} */

/* Intro Section */
/* .intro-section {
    color: #2c2c2c;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
} */
.service{
    position: relative;
    top: -70px;
}
.intro-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #d32f2f, #388e3c, #1976d2, #fbc02d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.intro-description {
    font-size: 1.2em;
    margin-bottom: 0;
}
.service-image {
    margin-top: 20px;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100px; /* Set a maximum height */
    height: auto;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}
/* Service Section Styling */
.services {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.service {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #1976d2;
    background: linear-gradient(90deg, #d32f2f, #388e3c, #1976d2, #fbc02d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}
/* Media query for mobile view */
@media (max-width: 768px) {
    .services {
        padding: 40px 0; /* Decrease padding for smaller screens */
    }

    .service {
        padding: 20px; /* Adjust padding for individual services */
        margin: 10px; /* Adjust margins for individual services */
    }

    .service-title {
        font-size: 1.5em; /* Decrease font size for service titles */
        margin-bottom: 10px; /* Reduce bottom margin for service titles */
    }

    .service-description {
        font-size: 1em; /* Decrease font size for service descriptions */
    }

    .service-image img {
        max-height: 80px; /* Decrease maximum height for service images */
    }
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .zoho-column {
        flex: 0 0 100%; /* Set flex to 100% for full width on mobile */
        max-width: 100%; /* Remove max-width on mobile */
        padding: 10px; /* Decrease padding for smaller screens */
    }

    .zoho-widget {
        padding: 15px; /* Adjust padding for widget */
    }

    .zoho-image {
        margin-bottom: 10px; /* Decrease margin bottom for image */
        width: 80px; /* Decrease width for image */
    }

    .zoho-title {
        font-size: 1.2em; /* Decrease font size for title */
        margin-bottom: 5px; /* Decrease bottom margin for title */
    }

    .zoho-description {
        font-size: 0.9em; /* Decrease font size for description */
        margin-bottom: 10px; /* Decrease bottom margin for description */
    }

    .zoho-button {
        padding: 8px 16px; /* Adjust padding for button */
        margin-left: 0; /* Remove left margin for button */
    }
}
.zoho-creator .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zoho-creator .zoho-logo-header {
    max-width: 200px; /* Adjust as necessary */
    height: auto;
    margin-bottom: 20px;
}
.zoho-creator .section-title {
    font-size: 34px;
    margin-bottom: 20px;
}
.zoho-creator .row {
    display: flex;
    width: 100%;
}
.zoho-creator .col-left, .zoho-creator .col-right {
    flex: 1;
    padding: 20px;
}
.zoho-creator .col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zoho-creator .col-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.zoho-creator .zoho-logo {
    max-width: 100%;
    height: auto;
}
.zoho-logo-content {
    max-width: 300px; /* Adjust as necessary */
    height: auto;
    margin-bottom: 20px;
}
.zoho-logo-content  {
    max-width: 300px;

}
.elementor-button-wrapper {
    margin-top: 20px;
}
.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.elementor-button:hover {
    background-color: #005bb5;
}
.elementor-button-icon {
    display: inline-block;
    margin-left: 8px;
}
.elementor-button-text {
    margin-right: 8px;
}

/* Styles for the pricing section */
.pricing-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}
.main-title{
    color:#55538f;
    position: relative;
    top: 60px;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.price{
    background-color: #55538f;
}
.school_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.management-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 20px;
}

.management-description {
    font-size: 18px;
    color: lightgray;
    margin-bottom: 40px;
}
.benefits_title{
    color: #568fcc;
}
.school_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    top: 40px;
}

.school_container .section-title,
.school_container .section-description,
.school_container ul {
    flex: 1;
    padding: 0 20px;
}

.school_container ul {
    list-style: none;
    padding: 0;
}
.img-container {
    width: 50%;
}

.img-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: -80px;
}


.school_container ul li {
    margin-bottom: 10px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .school_container {
        flex-direction: column;
        text-align: center;
    }
}

/* Section title and description */
.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666;
}

/* Pricing plans layout */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Individual pricing plan */
.eael-pricing-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    max-width: 350px;
    text-align: left;
}

.header .title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.eael-pricing-tag {
    font-size: 2em;
    margin: 20px 0;
    color: #f2705c;
    text-align: center;
}

.price-tag .price-currency {
    font-size: 0.5em;
    vertical-align: top;
}

.price-period {
    font-size: 0.8em;
    color: #666;
}

.body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.body ul li {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin: 10px 0;
    color: #666;
}

.body ul li .li-icon {
    margin-right: 10px;
}

/* Button styling */




.footer .eael-pricing-button {
    display: inline-block;
    background-color: #f2705c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
    width: 50%;
}

.footer .eael-pricing-button:hover {
    background-color: #f2705c;
}
/* Mobile view styles for pricing section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 30px 0;
    }
    .main-title {
        font-size: 2em;
        top: 30px;
        position:relative;
        top:80px;
    }
    .school_container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .management-title {
        font-size: 2em;
        text-align: center;
        
        
    }
    .management-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }
    .benefits_title {
        font-size: 2em;
        text-align: center;
    }
    .section-title {
        font-size: 2em;
        text-align: center;
    }
    .section-description {
        font-size: 1em;
        text-align: center;
        margin-bottom: 20px;
    }
    .product-list {
        flex-direction: column;
        align-items: center;
    }
    .product {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .product-content {
        padding: 20px;
    }
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    .eael-pricing-item {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }
    .header .title {
        font-size: 1.2em;
        text-align: center;
    }
    .eael-pricing-tag {
        font-size: 1.5em;
        margin: 10px 0;
        text-align: center;
    }
    .price-period {
        font-size: 0.7em;
        text-align: center;
    }
    .body ul li {
        font-size: 0.9em;
    }
    .footer .eael-pricing-button {
        width: 50%;
        padding: 10px 20px;
    }
    .img-container {
        width: 100%;
        margin-top: 0;
    }
    .img-container img {
        margin-top: 0;
    }
    
}

/* Custom Section Styles */
.custom-section {
    padding: 0 20px 40px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.custom-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('zoho-aboutus-cuttingedge.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 100px;
}

.custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay with 50% opacity */
    z-index: 1;
}

.custom-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    margin: 0;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.custom-content {
    flex: 1;
    padding: 20px;
}

.custom-title-section {
    margin-bottom: 20px;
}

.custom-sub-title p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(to bottom, #0078D4 50%, #D83B01 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-para-margin {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.button-wrapper {
    margin-top: 20px;
}

.custom-button {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-button:hover {
    background-color: #003d82;
}

.custom-image {
    flex: 1;
    text-align: center;
}

.custom-image img {
    max-width: 100%;
    border-radius: 10px;
    height: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column;
        text-align: center;
    }

    .custom-content,
    .custom-image {
        flex: none;
        width: 90%;
    }

    .custom-button {
        width: 100%;
        box-sizing: border-box;
    }

    .custom-hero h1 {
        font-size: 36px;
    }
}
.features-section, .benefits-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 40px;
}

.features-title, .benefits-title {
    text-align: center;
    margin-bottom: 30px;
}

.features-title h2, .benefits-title h2 {
    font-size: 32px;
    background: linear-gradient(to bottom, #0078D4 50%, #D83B01 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-content, .benefits-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item, .benefit-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 15px;
    padding: 20px;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
}

.feature-item h3, .benefit-item h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 10px;
}

.feature-item p, .benefit-item p {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-item, .benefit-item {
        flex: 1 1 100%;
    }
}


