/* Root Variables */
:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #4372c7;
    --text: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #dddddd;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@font-face {
  font-family: 'Accuratist';
  src: url('D:/Nrupali/VedLabFinal/VedLab/labsite/Fonts/accuratist/Accuratist.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
var(--accent)
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		ul {
			list-style-type: none;
			padding-left: 0;
		}

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--secondary);
            overflow-x: hidden;
        }

        /* Modern Navbar */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--secondary);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
		
		/* Animation classes */
[data-aos] {
  transition: all 0.5s ease;
}

.scroll-animation {
  opacity: 0;
}

.scroll-animation.animate__animated {
  opacity: 1;
}

/* Will-change tells the browser to optimize for these properties */
.scroll-animation {
  will-change: transform, opacity;
}

/* Hardware acceleration for smoother animations */
.animate__animated {
  transform: translateZ(0);
}

        .navbar-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
			position: relative;
        }

            .navbar-container h2 {
                margin-left: 88px;
				font-family: 'Accuratist', sans-serif;
                color: var(--accent)
            }

            .logo {
                display: flex;
                align-items: center;
                padding-top: 50px;
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--primary);
                text-decoration: none;
            }

        .logo-icon {
			
			color: var(--accent);
			width: 150px;
			height: 100px;
			position:absolute;
			margin-bottom: 50px;
			border: 1px solid var(--accent);	
		}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
			margin-top : 17px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0.75rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #434A5A;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #434A5A;
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Modern Dropdowns */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--secondary);
            min-width: 260px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 0.5rem 0;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
	
        .nav-item:hover > .dropdown,
        .nav-item.active > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            position: relative;
            padding: 0.5rem 1.5rem;
        }

        .dropdown-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.95rem;
			font-style: bold ;
            display: block;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .dropdown-link:hover {
            color: #434A5A;
            transform: translateX(5px);
        }
		
		 .dropdown-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #434A5A;
            transition: var(--transition);
        }

        .dropdown-link:hover::after {
            width: 100%;
        }

        /* Nested Sub-Dropdowns */
        .dropdown .dropdown {
            left: 100%;
            top: 0;
            transform: translateX(10px);
            min-width: 240px;
        }

        .dropdown-item:hover > .dropdown,
        .dropdown-item.active > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .dropdown-item > .dropdown-link i {
            float: left;
            font-size: 0.7rem;
            margin-top: 0.3rem;
            transition: transform 0.3s ease;
        }

        .dropdown-item.active > .dropdown-link i.fa-chevron-right {
            transform: rotate(90deg);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
		
		 @media (max-width: 1280px) {
			 
             .logo-icon {
				
				width: 120px;
				height: 80px;
				border: 1px solid var(--accent);
			 }
		
		      .nav-links {
				    display: flex;
				    list-style: none;
				    gap: 0.5rem;
			  }
         }


        @media (max-width: 1100px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--secondary);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
                padding: 0.5rem 0;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 1.1rem;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out;
                box-shadow: none;
                background-color: var(--light-gray);
                width: 100%;
                padding: 0;
                transform: none;
                border: none;
                border-radius: 4px;
            }

            .nav-item.active > .dropdown,
            .dropdown-item.active > .dropdown {
                max-height: 2000px;
                padding: 0.5rem 0;
            }

            .dropdown .dropdown {
                margin-left: 1rem;
                background-color: #ececec;
            }

            .dropdown-item {
                padding: 0.5rem 1rem;
            }

            .dropdown-link {
                padding-left: 1rem;
            }
        }

        @media (max-width: 768px) {
			header {
				margin-bottom:50px;
			}
			
            .navbar-container {
                padding: 0 1.5rem;
            }

               
        }
       
        @media (max-width: 576px) {
			header {
				margin-bottom:50px;
			}
			
            .navbar-container {
                padding: 0 1.5rem;
            }

                .navbar-container h2 {
                    display: none;
                }
        }

        /* Modern Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }  
				
/* Contact Bar */
.contact {
    background: var(--accent);
    color: white;
    font-size: 16px;
    padding: 5px 0;
	position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    
}

.contact-info,
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.contact-link {
    color: white;
    text-decoration: none;
	
}

.Email-link {
	color: white;
    text-decoration: none;
	margin-left:5px;
}

.Email-link i,
.contact-link i,
.social-links i {
    font-size: 16px;
    margin-right: 5px;
}

.divider {
    color: white;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.social-links a:hover {
  color: #ff8f00;
}

.contact-link a:hover {
  color: #ff8f00;
}

.contact-link i a:hover {
  color: #ff8f00;
}

@media (max-width: 1100px) {
    .contact {
        
        padding-left:10px;
        padding-right:10px;
        
    }
}

    /* Responsive */
    /* Responsive */
    @media (max-width: 576px) {
        .contact {
            font-size: 14px;
            text-align: center;
            padding: 8px 0;
        }

        .contact-container {
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            text-align: center;
            margin: 0 auto;
        }

        .contact-link,
        .Email-link {
            margin-left: 0; /* Reset margins on small screens */
            white-space: nowrap;
        }

        .divider {
            display: none; /* Optional: hide the divider on mobile */
        }

        .social-links {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            text-align: center;
            width: 100%;
        }

            .social-links a {
                font-size: 18px; /* Slightly larger for touch */
            }
    }



/* Basic icon styling */
.whatsapp-icon {
  font-size: 2rem;
  color: #25D366; /* WhatsApp green color */
}

/* Floating button styling */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-float-icon {
  margin-top: 16px;
  font-size: 1.5rem;
}







	
		