/* --- General Setup & Variables --- */
:root { --primary-color: #007bff; --primary-dark: #0056b3; --secondary-color: #f9a825; --dark-color: #263238; --light-color: #f8f9fa; --white-color: #ffffff; --footer-bg: #004d80; --font-family-headings: 'Poppins', sans-serif; --font-family-body: 'Roboto', sans-serif; --text-color-light: #6c757d; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family-body); line-height: 1.7; color: var(--dark-color); background-color: var(--white-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-headings); color: var(--dark-color); font-weight: 600; }
h1 { font-size: 3.2rem; } h2 { font-size: 2.5rem; text-align: center; margin-bottom: 4rem; }
a { text-decoration: none; color: var(--primary-color); }
.btn { display: inline-block; padding: 12px 32px; border-radius: 5px; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-family-headings); border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-color); color: var(--white-color); } .btn-primary:hover { background-color: var(--primary-dark); }
.btn-secondary { background-color: var(--secondary-color); color: var(--dark-color); } .btn-secondary:hover { background-color: var(--white-color); color: var(--dark-color); }

/* --- Header with Logo --- */
.header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0.5rem 0; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; width: auto; }
.nav-links { display: flex; list-style: none; } .nav-links li { margin-left: 2.5rem; }
.nav-links a { color: var(--dark-color); font-weight: 500; padding: 5px 0; font-family: var(--font-family-headings); transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary-color); }

/* Hero Slider */ .slider-container { position: relative; width: 100%; height: 100vh; overflow: hidden; } .slider { width: 100%; height: 100%; } .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; display: flex; align-items: center; } .slide.active { opacity: 1; z-index: 1; } .slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%); } .slide-content { position: relative; z-index: 2; color: var(--white-color); max-width: 600px; padding: 40px; margin-left: 5%; background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(8px); border-radius: 10px; border-left: 4px solid var(--secondary-color); } .slide-content > * { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; } .slide.active .slide-content > * { opacity: 1; transform: translateX(0); } .slide.active .slide-content h1 { transition-delay: 0.2s; } .slide.active .slide-content p { transition-delay: 0.4s; } .slide.active .slide-content .btn { transition-delay: 0.6s; } .slide-content h1 { color: var(--white-color); } .slide-content p { font-size: 1.2rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); } .slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); border: none; color: var(--dark-color); width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: all 0.3s ease; } .slider-nav:hover { background: var(--secondary-color); } .slider-nav.prev { left: 20px; } .slider-nav.next { right: 20px; } .slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; } .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); margin: 0 5px; cursor: pointer; transition: background 0.3s ease; } .dot.active { background: var(--secondary-color); }
/* Clients Section */ .clients-section { padding: 8rem 0 4rem 0; background-color: var(--white-color); text-align: center; clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%); } .clients-title { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-color-light); margin-bottom: 2rem; } .clients-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2rem; } .clients-grid img { height: 110px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; } .clients-grid img:hover { filter: grayscale(0%); opacity: 1; }
/* General Section */ section:not(.slider-container):not(.clients-section) { padding: 6rem 0; }
/* Services Section */ .services-section { background: var(--white-color); } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; } .service-card { background: var(--white-color); text-align: center; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; padding: 2rem 1.5rem; border-bottom: 4px solid var(--primary-color); cursor: pointer; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-bottom-color: var(--secondary-color); } .service-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; transition: color 0.3s ease; } .service-card:hover i { color: var(--secondary-color); } .service-card h3 { font-size: 1.3rem; }
/* About Us Section */ .about-section { background-color: var(--light-color); position: relative; overflow: hidden; } .about-section::before { content: ''; position: absolute; top: 50%; left: -10%; transform: translateY(-50%) rotate(30deg); width: 600px; height: 600px; background-color: rgba(0, 123, 255, 0.07); border-radius: 45%; z-index: 0; } .about-section .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; position: relative; z-index: 1; } .about-image-new img { width: 100%; border-radius: 10px; box-shadow: 10px 10px 0 var(--primary-color); } .about-content-new h2 { text-align: left; margin-bottom: 1.5rem; } .about-stats { display: flex; gap: 2rem; margin-top: 2rem; margin-bottom: 2.5rem; } .stat-item { text-align: center; } .stat-item h3 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 0; } .stat-item p { margin-bottom: 0; font-weight: 500; }
/* Team Section */ .team-section { background-color: #ffffff; background-image: radial-gradient(var(--text-color-light) 0.5px, transparent 0.5px), radial-gradient(var(--text-color-light) 0.5px, #ffffff 0.5px); background-size: 20px 20px; background-position: 0 0, 10px 10px; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .team-member { text-align: center; background: var(--white-color); padding: 2rem; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .team-member img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; border: 5px solid var(--light-color); box-shadow: 0 0 15px rgba(0,0,0,0.1); } .team-member h3 { color: var(--primary-dark); }
/* Contact Section */ .contact-section { background-color: var(--light-color); } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--white-color); padding: 3rem; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); } .contact-details h2, .contact-form h2 { text-align: left; margin-bottom: 2rem; } .contact-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.5rem; } .contact-item i { font-size: 1.5rem; color: var(--primary-color); margin-top: 5px; } .contact-item h4 { margin-bottom: 0.3rem; } .contact-item p { margin-bottom: 0; line-height: 1.5; } .map-container { border-radius: 8px; overflow: hidden; margin-top: 2rem; } .map-container iframe { width: 100%; height: 250px; border: 0; } .form-group-row { display: flex; gap: 1rem; margin-bottom: 15px; } .form-group { margin-bottom: 1.5rem; } input, select, textarea { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 5px; font-family: 'Roboto', sans-serif; font-size: 1rem; } input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); } .btn-form { width: 100%; background-color: #007bff; border: none; color: white; padding: 16px; font-size: 1.1rem; cursor: pointer; border-radius: 5px; text-transform: uppercase; letter-spacing: 1px; } .btn-form:hover { background-color: var(--primary-dark); }
/* Footer */ .footer { background-color: var(--footer-bg); color: var(--light-color); padding-top: 4rem; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; } .footer-col h3 { font-size: 1.5rem; color: var(--white-color); margin-bottom: 1rem; } .footer-col h4 { font-size: 1.2rem; color: var(--white-color); margin-bottom: 1rem; } .footer-col p, .footer-col address { color: rgba(255,255,255,0.8); margin-bottom: 1rem; font-style: normal; } .footer-col a { color: rgba(255,255,255,0.8); transition: color 0.3s; } .footer-col a:hover { color: var(--secondary-color); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 0.8rem; } .cert-logos { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; } .cert-logos img { height: 50px; background: white; padding: 5px; border-radius: 5px; } .social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; } .social-icons a { color: var(--white-color); font-size: 1.2rem; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; } .social-icons a:hover { color: var(--secondary-color); border-color: var(--secondary-color); } .footer-bottom { text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.2); }
/* Modal Styles */ .modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); } .modal.active { display: flex; align-items: center; justify-content: center; } .modal-content { background-color: #fefefe; margin: auto; padding: 30px; border: 1px solid #888; width: 80%; max-width: 700px; border-radius: 10px; position: relative; animation: slideDown 0.5s ease-out; } @keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .close-button { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; top: 10px; right: 20px; } .close-button:hover, .close-button:focus { color: black; cursor: pointer; } #modal-body h2 { text-align: left; margin-bottom: 1.5rem; color: var(--primary-dark); } #modal-body ul { list-style-position: inside; padding-left: 10px; } #modal-body ul li { margin-bottom: 0.8rem; }
/* Form Result Styles */ #form-result { margin-top: 1.5rem; padding: 15px; border-radius: 5px; text-align: center; font-weight: 500; display: none; } .form-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; } .form-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }
/* Responsive */ @media (max-width: 992px) { .about-section .container, .contact-grid, .footer-grid { grid-template-columns: 1fr; } .about-image-new { order: -1; margin-bottom: 3rem; } .footer-grid { text-align: center; } .cert-logos, .social-icons { justify-content: center; } } @media (max-width: 768px) { .navbar { flex-direction: column; align-items: center; padding: 0.5rem 0;} .nav-links { margin-top: 1rem; padding-bottom: 0.5rem;} .nav-links li { margin: 0 0.8rem; } .header .btn { display: none; } .slide-content { padding: 20px; margin-left: 0; max-width: 90%; } .slide-content h1 { font-size: 2rem; } .form-group-row { flex-direction: column; gap: 1.5rem; } .slider-nav { width: 40px; height: 40px; } .clients-section { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); padding-top: 4rem; } }