/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	Georgia, serif; /* Apply Georgia font */
}

body {
    Background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Header Section */
.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
	margin-bottom: 100px; /* Reduce margin as it's now overlapped */
    
}

.bg_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}





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

.brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers content */
  gap: 20px;
  padding: 20px;
  max-width: 1200px; /* Limits container width */
  margin: 0 auto; /* Centers the container */
  margin-top: -250px;
}

.brand-container div {
  flex: 1;
  min-width: 350px;
  max-width: 50%;
  background-color: transparent;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  perspective: 1000px; /* Adds 3D depth */
}

.impact {
  max-width: 100%; /* Ensures images are responsive */
  height: auto; /* Maintains aspect ratio */
  object-fit: contain; /* Prevents distortion */
  
}



/* Parallax Effect on Hover */
.brand-container div:hover {
  
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.0);
}

/* Tablet View (max-width: 768px) */
@media (max-width: 992px) {
  .brand-container div {
    max-width: 48%; /* Allows two items per row */
	
  }
}

/* Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .brand-container {
    flex-direction: column;
    align-items: center;
	margin-top: -100px;
  }

  .brand-container div {
    max-width: 100%; /* Stacks the divs */
  }
}






/* Full-width background image */


.bg_header {
    width: 100%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


/* Logo */
.logo {
    position: fixed;
    top: 10px;
    left: 20px;
    width: 300px; /* Default size */
    height: auto;
    z-index: 4;
}

/* Tablet Screens (Smaller logo) */
@media (max-width: 992px) {
	
	.logo-container {
        width: 1000px; /* Reduce size for tablets */
		position: fixed;
		background-color: #fafbf1;
		z-index: 4;
		top:0px;
		height:60px;
		box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Drop shadow */
		
    }
	
    .logo {
        width: 200px; /* Reduce size for tablets */
		position: fixed;
		
    }
	
	
	
}

/* Mobile Screens (Even smaller logo) */
@media (max-width: 480px) {
    
    .logo {
        width: 250px; /* Further reduce size for small mobile screens */
        position: absolute; /* Ensure it's visible at all times */
        top: 10px;
        left: 10px;
		z-index:4;
    
	}
}



/* Navigation Bar */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: flex-end; /* Align menu to the right */
    align-items: center;
    gap: 40px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: black;
    padding: 15px 40px;
    z-index: 3;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

/* Navigation Items */
.nav p {
    margin: 0;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s ease-in-out;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
}

/* Hover Effect */
.nav p:hover {
    color: #0083ef;
    transform: translateY(-2px) scale(1.08);
    background: rgba(0, 151, 239, 0.15);
    border-radius: 10px;
}

/* Ensure content doesn't go under the navbar */
body {
    padding-top: 70px;
}

.menu-icon {
    display: none;

}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav {
        flex-direction: column;
       
        width: 100%;
        height: auto;
        background: #ffffff;
        top: 0;
        left: 0;
        padding: 10px 0;
        gap: 15px;
        font-size: 14px;
        display: none; /* Hide by default */
        align-items: center; /* Center items */
		
    }

    /* Show menu when toggled */
    .nav.active {
		display: flex;
		top: 60px; /* Moves the menu down */
		position: fixed; /* Ensure it doesn't push other content */
		width: 100%; /* Ensure it stays full width */
		background-color: #fafbf1; /* Optional: Ensure visibility */
		z-index: 1000; /* Keeps it above other elements */
	}


    /* Hamburger Menu */
    .menu-icon {
        display: block;
        position: fixed;
        top: 4px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        z-index: 5; /* Ensure it's above everything */
        background: #transparent;
        padding: 5px 10px;
        border-radius: 5px;
		
    }
}






/* Ensure content doesn't go under the navbar */
body {
    padding-top: 60px; /* Adjust padding so content isn't hidden */
}

/* Responsive Styles */



/* Centering text inside header */
.hd-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5); /* Transparent white */
    border-radius: 8px; /* Optional: Adds rounded corners for better aesthetics */
}

.hd-word h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hd-word p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    font-style: oblique;
}

.about-section {
    display: flex;
    align-items: flex-start; /* Align content to the top */
    justify-content: center;
    width: 100%; /* Full width */
    min-height: 700px; /* Default height */
    gap: 10px; /* Space between elements */
    background-color: #fafbf1;
    padding: 10px; /* Adds padding for better spacing */

    background-image: url('../images/about.jpg'); /* Background image */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents image repetition */

    border-radius: 20px; /* Rounded corners */
    overflow: hidden; /* Ensures the background respects the border radius */
	margin-top: 100px;
}

/* Tablet Screens */
@media (max-width: 992px) {
    .about-section {
		background: url('../images/about-mobile.jpg') no-repeat center center;
		width: 100%; /* Slightly reduce width for better fit */
        min-height: 1200px; /* Adjust height */
        background-size: contain; /* Show the full image without cropping */
        background-position: top center; /* Adjust position */
        border-radius: 15px; /* Adjust border radius */
		margin-top: 50px;
		display:contain;
		Background-color:#ffffff;
		box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Drop shadow */
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .about-section {
        min-height: 800px; /* Reduce height */
  
        background-position: center center; /* Keep image centered */
        width: 95%; /* Slightly reduce width for better fit */
        border-radius: 10px; /* Smaller border radius */
		margin-top: 10px;
		background: url('../images/about-mobile.jpg') no-repeat center center;
        background-size: cover;
    }
}






/* About Image */
.about-image {
    width: 30%;
    align-self: flex-start; /* Keeps the image at its natural height */
}

.about-image img {
    width: 300%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* About Text */
.about-text {
    width: 30%;
    padding: -10px;
    border-radius: 10px;
    text-align: justify;
    line-height: 1.8;
    font-size: 20px;
}



/* Who We Are Section */
.whoWeAre {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 150px;
    gap: 50px; /* Space between image and text */
}

/* Image */
.whoWeAre-image {
    width: 25%; /* Adjust image size */
}

.whoWeAre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Drop shadow */
}

/* Text */
.whoWeAre-text {
    width: 40%; /* Keep text proportional */
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
    line-height: 1.8;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .whoWeAre {
        flex-direction: column;
        gap: 20px;
    }

    .whoWeAre-image, .whoWeAre-text {
        width: 90%; /* Optimize for smaller screens */
    }
}




/* Heading */
.about-text h1 {
    text-align: center;
    font-size: 36px;
    padding-bottom: 20px; /* Gap within text */
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column; /* Stack elements */
        gap: 20px;
    }

    .about-image, .about-text {
        width: 90%; /* Ensure better mobile layout */
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .hd-word {
        width: 90%;
        font-size: 16px;
    }

    .about-section {
        flex-direction: column; /* Stack elements */
        text-align: center;
        width: 100%;
        gap: 20px; /* Add some spacing between elements */
		
    }

    .about-image img,
    .about-text {
        width: 90%; /* Take full width */
    }

    .nav {
        top: 10px;
        right: 10px;
        padding: 8px;
        gap: 10px;
        font-size: 14px;
    }
	
}

/* Product Section */
.product-section {
    text-align: center;
    width: 100%;
    padding: 110px;
	
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 10px; /* Spacing between images */
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    padding: 50px;
}

/* Product Image Styling with Parallax Effect */
.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(128, 128, 128, 0.5); /* Gray drop shadow */
    transition: transform 0.3s ease-out; /* Smooth hover effect */
}

/* H3 styling inside the div, overlaying the image */
.product-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    color: #fff; /* White text */
    padding: 10px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

/* Hover effect */
.product-item:hover h3 {
    background: rgba(64, 224, 208, 0.8); /* Changes to turquoise on hover */
}

/* Parallax Effect */
.product-item:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
}



.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: transparent;
            padding: 20px;
            position: relative;
        }
        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 20px;
			color: white;
        }
        .gallery img {
            width: 300px;
            margin: 50px;
			border: 5px solid blue;
        }



/* Responsive Design for Mobile */
/* Responsive Design for Mobile */
@media (max-width: 992px) {
    /* Adjust Product Section Padding */
    .product-section {
        padding: 10px 10px; /* Reduce padding for smaller screens */
		margin-top:100px;
    }

    /* Change Grid Layout for Mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
        width: 90%; /* Reduce width for better fit */
        padding: 20px; /* Reduce padding */
    }

    /* Adjust Product Image */
    .product-item img {
        width: 100%; /* Full width for mobile */
        border: 2px solid #40E0D0; /* Slightly thinner border */
        box-shadow: 3px 3px 10px rgba(128, 128, 128, 0.4); /* Softer shadow */
    }

    /* Modal Adjustments for Mobile */
    .modal-content {
        max-width: 90%; /* Fit content within the screen */
    }

    .gallery img {
        width: 100%; /* Make images full width in modal */
        margin: 20px 0; /* Reduce margin */
        border: 3px solid blue; /* Adjust border size */
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
	
	.product-section {
        padding: 10px 10px; /* Reduce padding for smaller screens */
		margin-top:-80px;
    }
	
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 image per row */
        gap: 5px; /* Reduce gap */
    }

    .product-item img {
        border-radius: 5px; /* Smaller rounded corners */
        border: 1px solid #40E0D0; /* Thinner border */
    }

    .close {
        font-size: 16px; /* Reduce close button size */
        top: 5px;
        right: 5px;
    }
}





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



/* Container for Mission, Vision, and Core Values */
.mission-vision-container {
    position: relative;
    width: 100%;
    min-height: 110vh; /* Adjust to content height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
	text-shadow: 1px 1px 0px black, -1px -1px 0px black, -1px 1px 0px black, 1px -1px 0px black; /* Creates an outline effect */
    padding: 40px; /* Added padding for better spacing on mobile */
	
	 /* Background Image */
    background: url('../images/mission.jpg') no-repeat center center;
    background-size: contain; /* Ensures it covers the full container */
	margin-top:160px;
	
	

}

/* Mobile View - Change Background Image */

@media (max-width: 992px) {
    .mission-vision-container {
        background: url('../images/mission-mobile.jpg') no-repeat center center;
        background-size: contain;
		
		box-shadow: 5px 5px 10px gray;
		min-height: 160vh; /* Adjust to content height */
		
    }
}

@media (max-width: 768px) {
    .mission-vision-container {
        background: url('../images/mission-mobile.jpg') no-repeat center center;
        background-size: cover;
		width:100%;
		box-shadow: 5px 5px 10px gray;
		min-height: 150vh; /* Adjust to content height */
		
    }
}


@media (max-width: 380px) {
    .mission-vision-container {
        background: url('../images/mission-mobile.jpg') no-repeat center center;
        background-size: contain;
    }
}



/* Mission and Vision Section */
.mission-vision {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    gap: 20px; /* Reduce gap for better spacing */
    justify-content: center;
    align-items: center;
    width: 90%; /* Slightly wider on small screens */
    padding: 20px;
}

/* Mission and Vision Styling */
.mission, .vision {
    width: 100%; /* Full width for mobile */
    background: rgba(0, 0, 0, 0.0); /* Transparent dark background */
    padding: 15px;
    border-radius: 10px;
}

/* Core Values Section */
.core-values {
    margin-top: 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.0);
    padding: 20px;
    border-radius: 10px;
}

/* Text Styling */
h1 {
    font-size: 28px; /* Smaller font size for mobile */
    margin-bottom: 10px;
}

p {
    font-size: 16px; /* Slightly smaller font */
    line-height: 1.6; /* Adjusted for better readability */
}

/* Responsive Styles */
@media (min-width: 992px) {
    .mission-vision {
        flex-direction: row; /* Side by side on larger screens */
        gap: 50px;
        width: 80%;
    }

    .mission, .vision {
        width: 45%; /* Restore original layout */
    }

    .core-values {
        width: 80%;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 18px;
    }
}




/* Contact Container */
.contact-container {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
	margin-bottom:100px;
}

/* Contact Content */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px; /* Increased width */
    margin: 50px auto;
}

/* Contact Content */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Contact Form */
.contact-form {
    flex: 1;
    max-width: 500px; /* Increased size */
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 20px; /* More padding */
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Input Fields */
.contact-form select,
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 18px;
}

/* Submit Button */
.contact-form button {
    padding: 15px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 20px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0056b3;
}



@media (max-width: 992px) {
    /* Adjust the Contact Container */
    .contact-container {
        padding: 10px 10px; /* Reduce padding */
        margin-bottom: 200px; /* Reduce margin */
		
    }

    /* Adjust the Contact Content */
    .contact-content {
        flex-direction: column; /* Stack items */
        align-items: center; /* Center-align */
        gap: 20px; /* Reduce spacing */
        max-width: 100%; /* Ensure full width */
        margin: 20px auto; /* Adjust margin */
		
    }

    /* Contact Form */
    .contact-form {
		width: 500px;
        max-width: 100%; /* Full width */
        padding: 10px; /* Keep padding */
        gap: 10px; /* Maintain spacing */
        min-height: 100px; /* Increase height */
        height: 700px; /* Allow expansion if needed */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    }

    /* Input Fields */
    .contact-form select,
    .contact-form input,
    .contact-form textarea {
        padding: 20px; /* Adjust padding */
        font-size: 16px; /* Adjust font size */
    }

    /* Textarea Adjustment */
    .contact-form textarea {
        min-height: 200px; /* Make textarea taller */
    }

    /* Submit Button */
    .contact-form button {
        padding: 14px; /* Adjust padding */
        font-size: 18px; /* Slightly smaller font */
    }
	
	.map {
		  width: 100%;
		  max-width: 700px; /* Adjust width as needed */
		  height: 700px; /* Set a fixed height */
		  margin: 0 auto; /* Center the map */
		}

		.map iframe {
		  width: 100%;
		  height: 100%; /* Make the iframe fill the .map container */
		  border: 0;
		}

	
	
}







@media (max-width: 768px) {
    /* Adjust the Contact Container */
    .contact-container {
        padding: 10px 10px; /* Reduce padding */
        margin-bottom: 200px; /* Reduce margin */
		
    }

    /* Adjust the Contact Content */
    .contact-content {
        flex-direction: column; /* Stack items */
        align-items: center; /* Center-align */
        gap: 20px; /* Reduce spacing */
        max-width: 100%; /* Ensure full width */
        margin: 20px auto; /* Adjust margin */
		
    }

    /* Contact Form */
    .contact-form {
		width: 500px;
        max-width: 100%; /* Full width */
        padding: 10px; /* Keep padding */
        gap: 10px; /* Maintain spacing */
        min-height: 100px; /* Increase height */
        height: 700px; /* Allow expansion if needed */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    }

    /* Input Fields */
    .contact-form select,
    .contact-form input,
    .contact-form textarea {
        padding: 20px; /* Adjust padding */
        font-size: 16px; /* Adjust font size */
    }

    /* Textarea Adjustment */
    .contact-form textarea {
        min-height: 200px; /* Make textarea taller */
    }

    /* Submit Button */
    .contact-form button {
        padding: 14px; /* Adjust padding */
        font-size: 18px; /* Slightly smaller font */
    }
	
	.map {
		  width: 100%;
		  max-width: 700px; /* Adjust width as needed */
		  height: 700px; /* Set a fixed height */
		  margin: 0 auto; /* Center the map */
		}

		.map iframe {
		  width: 100%;
		  height: 100%; /* Make the iframe fill the .map container */
		  border: 0;
		}

	
	
}





@media (max-width: 480px) {
    /* Adjust the Contact Container */
    .contact-container {
        padding: 10px 10px; /* Reduce padding */
        margin-bottom: 200px; /* Reduce margin */
		
    }

    /* Adjust the Contact Content */
    .contact-content {
        flex-direction: column; /* Stack items */
        align-items: center; /* Center-align */
        gap: 20px; /* Reduce spacing */
        max-width: 100%; /* Ensure full width */
        margin: 20px auto; /* Adjust margin */
    }

    /* Contact Form */
    .contact-form {
		width: 400px;
        max-width: 100%; /* Full width */
        padding: 10px; /* Keep padding */
        gap: 10px; /* Maintain spacing */
        min-height: 570px; /* Increase height */
        height: auto; /* Allow expansion if needed */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    }

    /* Input Fields */
    .contact-form select,
    .contact-form input,
    .contact-form textarea {
        padding: 14px; /* Adjust padding */
        font-size: 16px; /* Adjust font size */
    }

    /* Textarea Adjustment */
    .contact-form textarea {
        min-height: 200px; /* Make textarea taller */
    }

    /* Submit Button */
    .contact-form button {
        padding: 14px; /* Adjust padding */
        font-size: 18px; /* Slightly smaller font */
    }
}






/* Google Map */
.map {
    flex: 1;
    max-width: 500px; /* Bigger map */
    height: 400px; /* Taller map */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 992px) {
		
    .map {
		width:400px;
        max-width: 100%; /* Full width */
        min-height: 400px; /* Increased height */
        height: auto; /* Allow flexibility */
        border-radius: 8px; /* Slightly smaller rounded corners */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
        margin: 20px auto; /* Center with spacing */
    }

    .map iframe {
        width: 100%;
        min-height: 400px; /* Match container height */
        height: 400px;
        margin-top: 50px;
    }
}



/* Contact Info - Set to full width below */
.contact-info {
    flex-basis: 100%; /* Forces it to take full width */
    text-align: center; /* Center text */
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    font-size: 18px;
}




@media (max-width: 480px) {
		
    .map {
		width:400px;
        max-width: 100%; /* Full width */
        min-height: 400px; /* Increased height */
        height: auto; /* Allow flexibility */
        border-radius: 8px; /* Slightly smaller rounded corners */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
        margin: 20px auto; /* Center with spacing */
    }

    .map iframe {
        width: 100%;
        min-height: 400px; /* Match container height */
        height: 400px;
        margin-top: 50px;
    }
}



/* Contact Info - Set to full width below */
.contact-info {
    flex-basis: 100%; /* Forces it to take full width */
    text-align: center; /* Center text */
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .map, .contact-info {
        max-width: 90%;
    }

    .map {
        height: 350px; /* Adjusted height */
    }
}


@media (max-width: 480px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .map, .contact-info {
        max-width: 100%;
		max-height: 300px;
		
    }

    .map {
        height: 400px; /* Adjusted height */
    }
}



/* Modal Background */
.modal-email-confirmation {
    display: none; /* Ensure it's hidden initially */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for better focus */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Adds a slight blur effect */
}

/* Modal Content */
.modal-content-email {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent for a modern feel */
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px; /* Limits the modal width */
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Text */
.modal-content-email p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* Close Button */
.modal-content-email button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.modal-content-email button:hover {
    background: #0056b3; /* Darker shade on hover */
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



.team-container {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.team-slider {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
	
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    object-fit: cover;
    margin-bottom: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet-active {
    margin-top: 20px;
    background-color: #007bff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .team-slider {
        width: 80%;
        z-index: 100;
    }

    .team-member img {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .swiper-slide {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .swiper-button-next, .swiper-button-prev {
        font-size: 16px; /* Adjust button size */
    }
}

@media (max-width: 480px) {
    .team-member img {
        width: 100%; /* Full width for very small screens */
        height: auto; /* Maintain aspect ratio */
    }

    .swiper-slide {
        padding: 5px; /* Further reduce padding */
    }

    .swiper-button-next, .swiper-button-prev {
        font-size: 14px; /* Smaller button size */
    }
}






.productImg {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1100px;
            margin: auto;
			margin-top:50px;
        }
        .productImg img {
            width: 100%;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            border-radius: 5px;
            transition: 0.3s;
        }
        .productImg img:hover {
            opacity: 1.0;
			transform: scale(1.5); /* Zoom out effect */
        }
		
		
		
		
		
		
        
		.titleproduct {
			  display: flex;
			  justify-content: center;
			  align-items: center;
			  height: 5vh;
			 
			  top: 10px;
			  left: 0;
			  right: 0;
			  background-color: transparent;
			  z-index: 1000; /* Ensure it stays on top of other content */
			}

		
		.modalproduct {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            background: white;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }
        .modalproduct iframe {
            flex-grow: 1;
            width: 100%;
            height: 100%;
            border: none;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            background: white;
            border-radius: 50%;
            padding: 5px 10px;
        }



/* Business model section */
.business {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
	background-color: #ecece9;
	border-top: 5px solid grey; /* Grey top border */
    border-bottom: 5px solid grey; /* Grey bottom border */
}

/* Business text styling */
.business-text {
    margin-bottom: 20px; /* Space before images */
}

.business-text h1 {
    font-size: 28px;
    color: #333;
}

/* Image container (since you removed .about-image) */
.business img {
    width: 400px; /* Set width */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease-in-out;
    margin: -20px; /* Adds spacing between images */
}

/* Shake effect on hover 
.business img:hover {
    animation: shake 0.3s infinite;
}
*/

/* Parallax Effect */
.business img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}



/* Keyframes for shake animation */
@keyframes shake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-2px, -2px) rotate(-2deg); }
    20% { transform: translate(2px, 2px) rotate(2deg); }
    30% { transform: translate(-2px, 2px) rotate(-2deg); }
    40% { transform: translate(2px, -2px) rotate(2deg); }
}

/* Responsive design for mobile */
@media (max-width: 992px) {
    .business {
        flex-direction: column; /* Stack elements */
		margin-top: 100px;
    }

    .business img {
        width: 100%; /* Make images responsive */
        max-width: 230px; /* Prevents images from being too large */
    }
}


/* Wrapper for both Partners and Sliding Logos */
.partners-container {
    background-image: url('../images/partners.jpg'); /* Background image */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Ensure full width */
    min-height: 100vh; /* Set minimum height to viewport */
    background-size: contain; /* Ensures the full image is displayed */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat;
    padding: 50px 0; /* Adds spacing */
}


/* Partners Image */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px; /* Add some padding */
    background-color: #f8f8f8;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    max-width: 90%; /* Adjust width */
    margin-top: 50px; /* Reduce space */
	height: auto;
}

/*  Mobile View: Change Background Image */
@media (max-width: 992px) {
    .partners-container {
        background-image: url('../images/partners-mobile.jpg'); /* Mobile background */
        background-size: cover; /* Adjust image to fit */
        background-position: top center; /* Align it properly */
        padding: 30px 0; /* Reduce padding */
		width: 100%; /* Ensure full width */
		margin-top: 100px;
		max-width: 100%
    }
}

/*  Mobile View (480px and below) */
@media (max-width: 480px) {
    .partners-container {
        background-image: url('../images/partners-mobile.jpg'); /* Mobile-specific background */
        background-size: contain; /* Ensure full image visibility */
        background-position: top center; /* Align properly */
        background-repeat: no-repeat;
        padding: 20px 0; /* Adjust padding for better spacing */
    }

    /* Adjust partner section for smaller screens */
    .partners {
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; /* Reduce padding */
        max-width: 100%; /* Use full width */
    }
}


/* Logo Slider - Positioned at Bottom of Partners Image */
.logo_slide {
    position: absolute;
	display:flex;
    bottom: -10px; /* Overlap effect */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px 0;
}

/* Wrapper for logos */
.logo_wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

/* The scrolling container */
.logo_track {
    display: flex;
    animation: logoSlide 25s linear infinite; /* Slower, smoother animation */
}


/* Logos */
.logo_track img {
    height: 80px;
    margin: 0 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect */
}

/* Keyframes for Continuous Scrolling */
@keyframes logoSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Hover Effect - Stop animation */
.logo_wrapper:hover .logo_track {
    animation-play-state: paused;
}

/* Zoom in only the hovered logo */
.logo_track img:hover {
    transform: scale(1.9);
}



/* Logos */
.logo_track img {
    height: 80px;
    margin: 0 15px;
    flex-shrink: 0;
}

/* Keyframes for Continuous Scrolling */
@keyframes logoSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Moves half the track, seamlessly looping */
    }
}

/* Responsive Design */
@media (max-width: 1024px) { /* Tablet */
    .partners-container {
        padding: 30px 0; /* Reduce padding */
    }
    
    .logo_slide {
        width: 80%;
    }

    .logo_track img {
        height: 60px;
    }
}

@media (max-width: 992px) { /* tablet*/
    .partners-container {
        padding: 20px 0; /* Less padding */
    }
    
    .logo_slide {
        width: 100%;
		bottom: -70px; /* Overlap effect */
    }

    .logo_track img {
        height: 50px;
        margin: 0 10px;
    }
}
@media (max-width: 480px) { /* Mobile */
    .partners-container {
        padding: 20px 0; /* Less padding */
    }

    .partners {
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; /* Reduce padding */
        max-width: 100%;
        position: relative; /* Ensure relative positioning for child elements */
    }

    .logo_slide {
        position: relative; /* Change from absolute to relative */
        bottom: auto; /* Reset bottom positioning */
        left: auto; /* Reset left positioning */
        transform: none; /* Remove translation */
        width: 100%;
        margin-top: 500px; /* Add space between partners and logos */
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .logo_track img {
        height: 50px;
        margin: 0 10px;
    }
}


.footer {
    background: #ffffff; /* White background */
    color: black; /* Text color */
    padding: 4px 0; /* Slightly increased padding */
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Slight top shadow */
    position: fixed; /* Keeps footer at bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-size: 12px; /* Small text */
    height: 60px; /* Increased footer height */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out items */
    padding: 0 20px; /* Add horizontal padding */
	transition: opacity 0.5s ease-in-out;
    opacity: 0;
    
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    height: 100%; /* Match footer height */
}

/* Left-aligned About Section (inline text) */
.footer-section-about p {
    display: inline;
    align-items: center; /* Keep text inline */
    text-align: left;
    font-size: 12px; /* Slightly increased font size */
    flex: 1; /* Takes available space */
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if text overflows */
}

/* Right-aligned Social Icons */
.footer-section.social {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: center;
    flex: 1; /* Takes available space */
}

/* Social Icons - Circular */
.footer .social a {
    width: 24px; /* Adjusted icon size */
    height: 24px;
    margin-left: 8px; /* Spacing between icons */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social img {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer {
        height: auto; /* Allows dynamic expansion */
        padding-bottom: 0px; /* Prevent extra bottom space */
		
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        width: 100%;
        min-height: 200px;
    }

    /* Ensure About & Social are Together */
    .footer-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0px; /* REMOVE any spacing */
        margin: 0px;
        padding: 0px;
    }

    .footer-section-about {
        font-size: 12px;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        min-height: 100px;
        height: auto;
        margin: 0px;  /* REMOVE all margins */
        padding: 0px;  /* REMOVE all paddings */
    }

    .footer-section.social {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0px; /* Remove any margins */
        padding: 0px; /* Remove extra padding */
    }

    .footer .social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px; /* Reduce spacing between icons */
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

    .footer .social a,
    .footer .social img {
        width: 30px;
        height: 30px;
        margin: 1px; /* Remove any default margin */
        padding: 1px; /* Ensure no padding */
    }
}
@media (max-width: 480px) {

    .footer {
        height: auto; /* Allows dynamic expansion */
        padding-bottom: 0px; /* Prevent extra bottom space */
		
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        width: 100%;
        min-height: 200px;
    }

    /* Ensure About & Social are Together */
    .footer-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0px; /* REMOVE any spacing */
        margin: 0px;
        padding: 0px;
    }

    .footer-section-about {
        font-size: 12px;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        min-height: 100px;
        height: auto;
        margin: 0px;  /* REMOVE all margins */
        padding: 0px;  /* REMOVE all paddings */
    }

    .footer-section.social {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0px; /* Remove any margins */
        padding: 0px; /* Remove extra padding */
    }

    .footer .social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px; /* Reduce spacing between icons */
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

    .footer .social a,
    .footer .social img {
        width: 30px;
        height: 30px;
        margin: 1px; /* Remove any default margin */
        padding: 1px; /* Ensure no padding */
    }
}


/*solutions section*/

	/* Tabs Navigation */
	
	.tabs-container {
		display: flex; /* Enables flexible layout */
		flex-direction: column; /* Stacks items vertically */
		align-items: flex-start; /* Align items to the left */
		
		max-width: 100%;
		height: 700px;
		background-color: white;
		
		gap: 10px; /* Adds spacing between items */
		padding: 10px;
	}

	/* Ensures each tab takes full width if needed */
	.tabs-container > * {
		width: 100%;
		margin-Bottom:-10px;
	}		
	
	
	.tabs {
		list-style: none;
		padding: 0;
		margin: 0 auto;
		display: flex;
		
		align-items: center; /* Ensure vertical alignment */
		border-bottom: px solid #0481b7;
		max-width: 1300px;
		text-align: right;
		margin-top: 50px;
		left: 0px;
		
	}


	
	
	
	

	.tabs li a {
		display: block;
		padding: 20px 20px;
		background: white; /* Folder color */
		color: black;
		text-decoration: none;
		font-weight: bold;
		transition: background 0.3s ease;
		text-align: left;
		border-top-left-radius: 10px; /* Rounded top-left corner */
		border-top-right-radius: 50px; /* Rounded top-right corner */
		width: 400px;
		box-shadow: 5px 5px 10px gray;
		margin-bottom: -10px;
		
	}

	.tabs li a:hover, .tabs li a.active {
		background: #046c99;
		color: white;
	}

	/* Tab Content */
	.tab-content {
		max-width: 1300px;
		padding: 20px;
		border: 2px solid white;
		border-top: none;
		background: white;
		min-height: 200px;
		border-top-left-radius: 0px; /* Rounded top-left corner */
		border-top-right-radius: 50px; /* Rounded top-right corner */
		margin-left:auto; /* Center the container horizontally */
		margin-right:auto;
		text-align: center; /* Align content inside */
		box-shadow: 5px 5px 10px gray;
	}

	/* Initially hide all tabs except the active one */
	/* Default Tab Panel Styling */
	.tab-panel {
		display: none; /* Hide all panels by default */
		
	}

	/* Active Tab Panel with Background Image */
	.tab-panel.active {
		display: block;
		
		
		
	}	


	/* Buttons */
	.tab-btn {
		font-size: 14px;
		border: none;
		cursor: pointer;
		background-color: #0481b7;
		color: white;
		border-radius: 5px;
		margin: 5px;
		transition: background 0.3s ease;
		padding: 10px;
	}

	.tab-btn:hover {
		background-color: #46c99;
	}

	.tab-btn.active {
		background-color: #46c99;
	}

	/* Content */
	.content {
		display: none; /* Hide all content initially */
		align-items: left; /* Align image and text vertically */
		gap: 10px; /* Adjust spacing between image and text */
		padding: 10px;
		flex-wrap: nowrap; /* Prevent text from wrapping under the image */
		justify-content: flex-start; /* Align content properly */
		text-align:left;
	}

		/* Active Content */
		.active-content {
			display: flex !important; /* Show only active content */
			flex-direction: row; /* Arrange image and text inline */
			
		}

		/* Make image and text containers equal in width */
		

		.content div{
			flex: 0 0 50%; /* Right div takes 40% */
			max-width: 50%;
		}


		/* Reduce image width */
		.content img {
			width: 100%; /* Make image fill its container */
			height: auto;
			border-radius: 10px;
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
			padding: 5px;
			margin: 0px;
		}

		/* Add margin to h3 */
		.content h3 {
			margin-top: 25px;  /* Space above */
			margin-bottom: 5px; /* Space below */
			left:0px;
		}

		/* Responsive Design */
		@media (max-width: 1024px) {
			
			.tab-content {
				max-width: 100%; /* Adjust width for better responsiveness */
				padding: 20px;
				border: 2px solid white;
				border-top: none;
				background: white;
				min-height: 650px;
				border-top-left-radius: 0px;
				border-top-right-radius: 0px;
				text-align: center;
				margin: 0 auto; /* Center the container */
				min-height: 750px;
				margin-Bottom:50px;
			}
			
			
			.active-content {
				flex-direction: column; /* Stack on smaller screens */
				text-align: center;
			}

			.content div {
				max-width: 100%; /* Ensure full width */
				
			}

			.content img {
				max-width: 80%; /* Increase image size for mobile */
				margin-bottom: 10px;
			}
		}
		
		
		
		/* Responsive Design */
		@media (max-width: 768px) {
			
			.tabs {
				list-style: none;
				padding: 0;
				margin: 50px auto 0; /* Centers and keeps top margin */
				display: flex;
				justify-content: center; /* Align tabs to the center */
				align-items: center;
				border-bottom: 2px solid #0481b7;
				max-width: 100%; /* Make it fully responsive */
				text-align: center;
			}
			
			.tabs li a {
				display: block;
				padding: 12px 12px;
				background: white;
				color: black;
				text-decoration: none;
				font-weight: bold;
				transition: background 0.3s ease;
				width: 100%; /* Ensures full width */
				text-align: center;
				border-top-left-radius: 10px; /* Rounded top-left corner */
				border-top-right-radius: 10px; /* Rounded top-right corner */
				height:50px;
			}
			.tab-content {
				max-width: 100%; /* Adjust width for better responsiveness */
				padding: 20px;
				border: 2px solid white;
				border-top: none;
				background: white;
				min-height: 650px;
				border-top-left-radius: 0px;
				border-top-right-radius: 0px;
				text-align: center;
				margin: 0 auto; /* Center the container */
				min-height: 700px;
			}
			
			.tabs li {
				flex: 1; /* Ensures equal spacing */
				text-align: center;
			}
			
			
			.active-content {
				flex-direction: column; /* Stack on smaller screens */
				text-align: center;
			}

			.content div {
				max-width: 100%; /* Ensure full width */
			}

			.content img {
				max-width: 80%; /* Increase image size for mobile */
				margin-bottom: 10px;
			}
		}
		
		
		@media (max-width: 480px) {
			.tabs {
				list-style: none;
				padding: 0;
				margin: 50px auto 0; /* Centers and keeps top margin */
				display: flex;
				justify-content: center; /* Align tabs to the center */
				align-items: center;
				border-bottom: 2px solid #0481b7;
				max-width: 100%; /* Make it fully responsive */
				text-align: center;
			}

			.tabs li {
				flex: 1; /* Ensures equal spacing */
				text-align: center;
			}

			.tabs li a {
				display: block;
				padding: 12px 12px;
				background: white;
				color: black;
				text-decoration: none;
				font-weight: bold;
				transition: background 0.3s ease;
				width: 100%; /* Ensures full width */
				text-align: center;
				border-top-left-radius: 10px; /* Rounded top-left corner */
				border-top-right-radius: 10px; /* Rounded top-right corner */
				height:50px;
			}

			.tab-content {
				max-width: 100%; /* Adjust width for better responsiveness */
				padding: 20px;
				border: 2px solid white;
				border-top: none;
				background: white;
				min-height: 650px;
				border-top-left-radius: 0px;
				border-top-right-radius: 0px;
				text-align: center;
				margin: 0 auto; /* Center the container */
			}
			
			.content img {
				width: 150%; /* Make image fill its container */
				height: auto;
				border-radius: 10px;
				box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
				padding: 5px;
				margin: 0px;
			}
			.tab-btn {
				font-size: 10px;
				border: none;
				cursor: pointer;
				background-color: #0481b7;
				color: white;
				border-radius: 5px;
				margin: 5px;
				transition: background 0.3s ease;
				padding: 10px;
			}
		}

		
		section {
			scroll-margin-top: 150px; /* Adjust based on header height */
		}

		
		
		
		
		
		
		
		
		
		

	
	
	
	
	






