
/* Basic Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Theme Colors */
        :root {
            --primary-green: #7DD856;
            --primary-blue: #1106B0;
            --primary-cyan: #00CFC8;
            --primary-gray: #C1C1D4;
			--primary-white: #fff;
			--secondary-cyan: #00CFC8;
            --tertiary-gray: #C1C1D4;
        }

	
        /* Header and Navigation */
        header {
            background-color: var(--primary-blue);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
		
		.background-vid {
			  position: fixed;
			  right: 0;
			  bottom: 0;
			  object-fit:cover;
			  min-width: 100%;
			  min-height: 20%;
			  width: 100vw;
			  height: 100vh;
			  z-index: -1;
			}

		/* TopNav Navigation Div */		
		.topnav {
		  overflow: hidden;
		  background-color: var(--primary-blue);
		  width: 100%
		}

		.topnav nav a {
		  float: left;
		  display: block;
		  color: var(--primary-gray);
		  text-align: center;
		  padding: 14px 16px;
		  text-decoration: none;
		  font-size: 17px;
		}

		.topnav a:hover {
		  /*background-color: #ddd;*/
		  color: var(--primary-cyan);
		}

		.topnav a.active {
		  background-color: #04AA6D;
		  color: white;
		}

		
		.topnav .icon {
			display: none;
			color: var(--primary-gray);
			position: absolute;
			right: 0;
			top: 0;
			margin: 10px;
			padding: 10px;
		  }

		@media screen and (max-width: 600px) {
		  
		  .topnav a:not(:first-child) {display: none;}
		  .topnav a.icon {
			float: right;
			display: block;
		  }
		}

		@media screen and (max-width: 600px) {
		  .topnav nav {display: none;}
		  .topnav.responsive nav {display: block;}
		  .topnav.responsive {position: relative;}
		  .topnav.responsive .icon {
			color: var(--primary-gray);
			position: absolute;
			right: 0;
			top: 0;
			margin: 10px;
			padding: 10px;
		  }
		  	
		  .topnav.responsive a .icon {
		   color: var(--primary-gray);
		    text-align: right;
			position: absolute;
			right: 0;
			top: 0;
			margin: 10px;
			padding: 10px;
		  }
		  
		  .topnav.responsive a {
			float: none;
			display: block;
			text-align: left;
		  }
		  
		  .topnav.responsive nav ul {
			float: none;
			display: block;
			text-align: left;
		  }
		}
		
		/* TopNav Responsive Navigation Div - Ends Here */	
		
		
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
			height: 70px;
			width: 200px;
            color: var(--primary-cyan);
        }
		
        .topnav nav ul {
            list-style: none;
            display: flex;
        }

        .topnav nav ul li {
            margin-left: 0.5rem;
        }
		
        .topnav nav a {
            text-decoration: none;
            color: var(--primary-gray);
            font-weight: 500;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }

        .topnav nav a:hover {
            color: var(--primary-cyan);
            border-bottom: 3px solid var(--primary-green);
            padding-bottom: 0.2rem;
        }
		
        .social-handles a {
            color: var(--primary-gray);
            font-size: 1.2rem;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }

        .social-handles a:hover {
            color: var(--primary-cyan);
        }

        /* Sections */
        .section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            /*background-color: var(--primary-gray); */
			/*background-color: linear-gradient(to bottom, #fff, #f9f9f9); */
            color: var(--primary-blue);
			/*box-shadow: 5px 10px 18px var(--primary-gray);*/
			background: rgba(0, 0, 0, 0.0);
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-cyan);
        }

        /* Home Section */
        #home {
            background: linear-gradient(to bottom, var(--primary-cyan), #fff);
            padding: 10rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
			width: 100vw;
            height: 100vh;
			background: rgba(0, 0, 0, 0.7);
        }

        #home h1 {
            font-size: 3rem;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
        }

        #home p {
            font-size: 1.2rem;
            color: #555;
            max-width: 600px;
            margin-bottom: 2rem;
			color: var(--primary-white);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--primary-blue);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #0d0580; /* Darker shade of blue */
        }

        /* About Section */
        #about {
			background-color: var(--primary-white);
			background: rgba(0, 0, 0, 0.0);
        }

		
        .center-div {
            text-align: center;
			display: block;
			width: 100%;
			max-width: 700px;
            margin-left: auto;
			margin-right: auto;
			padding: 2rem;
        }
		
		/* image slider */
		.topslider-container {
			/*max-width: 800px;*/
			width: 100vw;
            /* width: 800px;  Adjust as needed */
            /*height: 800px;   */
            margin: 20px;

			position: absolute;
            background: rgba(0, 0, 0, 0.5);

            overflow: hidden; /* Hide overflowing images */
            border-radius: 10px;  /* Optional: Rounded corners */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Shadow for depth */
			z-index: -1;
        }
		
		#topslider-container .slide img {
            max-width: 100%;  /* Ensure image doesn't exceed container width */
            max-height: 100%; /* Ensure image doesn't exceed container height */
            /*object-fit: cover;  Maintain aspect ratio and cover the entire space */
			width: 100vw;
			height: 100vh;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
            border-radius: 10px; /* Optional: Rounded corners for images */
        }
		
		/* image slider */
		.slider-container {
			/*max-width: 800px;*/
			width: 100%;
            /* width: 800px;  Adjust as needed */
            /*height: 800px;   */
            margin: 20px;

            position: relative;
            overflow: hidden; /* Hide overflowing images */
            border-radius: 10px;  /* Optional: Rounded corners */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Shadow for depth */
			background: rgba(0, 0, 0, 0.5);
			z-index: -1;
        }

        .slider-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out; /* Smooth transition */
        }

        .slide {
            width: 100%;
            height: 100%;
            flex-shrink: 0; /* Prevent images from shrinking */
            display: flex; /* For centering the image */
            justify-content: center;
            align-items: center;
        }

        .slide img {
            max-width: 100%;  /* Ensure image doesn't exceed container width */
            max-height: 100%; /* Ensure image doesn't exceed container height */
            /*object-fit: cover;  Maintain aspect ratio and cover the entire space */
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
            border-radius: 10px; /* Optional: Rounded corners for images */
        }

        .controls {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 1; /* Ensure controls are above the images */
        }

        .control-button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            /* background-color: rgba(255, 255, 255, 0.7); Semi-transparent white */
			background-color: var(--primary-blue);
            cursor: pointer;
            transition: background-color 0.2s ease; /* Smooth transition */
        }

        .control-button:hover,
        .control-button.active {
            /* background-color: rgba(255, 255, 255, 1);  Fully opaque white on hover/active */
			background-color: var(--primary-cyan); /* Fully opaque white on hover/active */
        }

        .control-button.active {
            transform: scale(1.2); /* Slightly larger for active button */
        }
		/* slider */
        .about-content {
            text-align: left;
            padding: 2rem;
			background: rgba(0, 0, 0, 0.0);

        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary-cyan);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .about-content p {
            color: #555;
            margin-bottom: 1rem;
			color: var(--primary-white);
        }

        .core-values ul {
            list-style: none;
            padding-left: 0;
        }

        .core-values li {
            margin-bottom: 0.5rem;
            color: var(--primary-white);
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .leader {
            /* background-color: var(primary-green); */
			/* background-color: linear-gradient(to bottom, #fff, #A9A9A9); */
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .leader img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.5rem;
        }

        .leader h3 {
            font-size: 1.1rem;
            color: var(--primary-cyan);
            margin-bottom: 0.2rem;
        }
		
		.leader-cyan h4 {
            font-size: 1.1rem;
            color: var(--primary-cyan);
            margin-bottom: 0.2rem;
        }

        .leader p {
            font-size: 0.9rem;
            color: var(--primary-white);
        }

        .customer-reviews blockquote {
            /* background-color: #f9f9f9; */
			/* background-color: #f9f9f9; */
			/* background-color: linear-gradient(to bottom, #fff, #A9A9A9); */
            padding: 1.5rem;
            border-left: 5px solid var(--primary-cyan);
            margin-bottom: 1rem;
            font-style: italic;
            color: var(--primary-white);
        }

        .customer-reviews cite {
            display: block;
            text-align: right;
            color: var(--primary-cyan);
            font-style: normal bold;
        }

        .clients-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .client-logo img {
            max-height: 70px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            filter: grayscale(100%);
        }

        .client-logo img:hover {
            opacity: 1;
            filter: none;
        }

        .testimonials-slider {
            overflow: hidden;
            margin-top: 2rem;
        }

        .testimonial {
            padding: 1.5rem;
            /* background-color: linear-gradient(to bottom, #fff, #f9f9f9); */
			background-color: linear-gradient(to bottom, #fff, #A9A9A9); 
            border-radius: 8px;
            margin-bottom: 1rem;
            color: #555;
            font-style: italic;
        }

        .testimonial p {
            margin-bottom: 0.5rem;
        }

        .testimonial cite {
            display: block;
            text-align: right;
            font-style: normal;
            color: #777;
        }

        /* Leadership Section */
        #leadership {
        }

        #leadership h2{
          color: var(--primary-cyan);
        }

        /* Products & Services Section */
        #products-services {
        }

        #products-services h2{
          color: var(--primary-cyan);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .service-card {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .service-card h3 {
            font-size: 1.2rem;
            color: var(--primary-cyan);
            margin-bottom: 0.5rem;
        }

        .service-card p {
            color: #555;
        }

        .service-card ul {
            list-style: disc;
            padding-left: 1.2rem;
            color: #555;
        }

        .service-card li {
            margin-bottom: 0.3rem;
        }

		.case-studies-grid {
            display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			grid-template-rows: repeat(9, 250px); 
            gap: 1.5rem;
            margin-top: 2rem;
            /*grid-template-columns: repeat(4, 200px);
            grid-template-rows: repeat(2, 250px);*/
			/*grid-template-columns: repeat(2, 60%);
            grid-template-rows: repeat(4, 200px);
			max-width: 600px;
            gap: 20px;
            margin: 20px; 
            perspective: 1000px; */
        }

        .case-card {
            position: relative;
            width: 100%;
            height: 100%;
						
            text-align: left;
            cursor: pointer;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .case-card.flipped {
            transform: rotateY(180deg);
        }

        .card-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column; /* Stack items vertically */
            justify-content: center;
            align-items: center;
			
            border-radius: 8px;
			padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
			
            /*border: 2px solid var(--primary-blue);
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
            transition: transform 0.3s ease;
        }

        .card-front {
            background-color: #f9f9f9; /* Gray background for front */
        }

        .card-front img {
            max-width: 80%;
            max-height: 70%;
            object-fit: contain;
            border-radius: 8px;
        }

        .card-front h2{
            font-size: 1em;
            color: var(--primary-cyan);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .card-back {
            background-color: var(--primary-blue); /* Blue background for back */
            color: var(--primary-cyan); /* Gray text for back */
            transform: rotateY(180deg);
            padding: 15px;
            text-align: center;
            overflow: auto;
        }

        .card-back h2 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: var(--primary-cyan);
        }

        .card-back p {
            font-size: 0.9em;
            line-height: 1.4;
			color: var(--primary-cyan);
        }

        .case-card:hover {
            animation: bounce 0.5s;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
		
        /* Contact Us Section */
        #contact-us {
        }

        #contact-us h2{
          color: var(--primary-cyan);
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            padding: 2rem;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
            font-weight: bold;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border: 1px solid var(--primary-gray);
            border-radius: 4px;
            font-size: 1rem;
        }

        .contact-form textarea {
            resize: vertical;
        }

        .contact-form button {
            background-color: var(--primary-blue);
            color: #fff;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #0d0580;
        }

        /* Map View Section - Placeholder */
		#map-view {
        }

        #map-view h2{
          color: var(--primary-cyan);
        }
		
        /*#map-view {
            max-width: 600px;
			width: 70%;
            margin: 2rem auto;
            padding: 2rem;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        #map-view h2{
          color: var(--primary-blue);
        }*/

        #map-view p {
            color: var(--primary-white);
        }
		
		#map-view iframe{
		max-width: 600px;
		width: 100%;
		margin: 2rem auto;
		padding: 2rem;
		border-radius: 8px;
		}

        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: #fff;
            padding: 2rem;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--primary-cyan);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1rem;
        }

        .footer-links li {
            display: inline;
            margin: 0 1rem;
        }

		
		
        .footer-links a {
            color: #eee;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
        }

        .footer-contact p {
            margin-bottom: 0.5rem;
            color: #eee;
        }

		.footer-contact a {
            color: var(--primary-gray);
            #text-decoration: none;
            #transition: color 0.3s ease;
        }
		
		.footer-contact a:link, a:visited {
            color: var(--primary-green);
            #text-decoration: none;
            #transition: color 0.3s ease;
        }
		
		.footer-contact a:hover, a:active {
            color: var(--primary-cyan);
			#text-decoration: none;
            transition: color 0.3s ease;
        }
		
        .footer-social a {
            color: #eee;
            font-size: 1.2rem;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: var(--primary-green);
        }

        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--primary-gray);
        }
		
		.whatsApp{
			position:fixed;
			width:60px;
			height:60px;
			bottom:40px;
			left:40px;
			background-color:#25d366;
			color:#FFF;
			border-radius:50px;
			text-align:center;
			font-size:30px;
			box-shadow: 2px 2px 3px #999;
			z-index:100;
		}
		.my-whatsApp{
			margin-top:16px;
		}