 :root {
     --primary: #3C72FC;
     --primary-dark: #2a52be;
     --secondary: #0F172A;
     --accent: #00D4FF;
     --text-body: #64748b;
     --text-heading: #0b0f19;
     --light-bg: #F8FAFC;
     --white: #ffffff;
     --border: #E2E8F0;
     --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

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

 html {
     scroll-behavior: smooth;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 body {
     font-family: 'Manrope', sans-serif;
     color: var(--text-body);
     background: var(--white);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: var(--text-heading);
     font-family: 'Manrope', sans-serif;
     font-weight: 800;
     line-height: 1.2;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-padding {
     padding: 100px 0;
 }

 .flex-between {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .text-center {
     text-align: center;
 }

 .sec-header {
     margin-bottom: 60px;
     text-align: center;
 }

 .sec-header span {
     color: var(--primary);
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     font-size: 0.9rem;
     display: block;
     margin-bottom: 10px;
 }

 .sec-header h2 {
     font-size: 2.8rem;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 35px;
     background: var(--primary);
     color: var(--white);
     font-weight: 700;
     border-radius: 6px;
     transition: var(--transition);
     border: 2px solid var(--primary);
 }

 .btn:hover {
     background: transparent;
     color: var(--primary);
     transform: translateY(-3px);
 }

 .btn-white {
     background: transparent;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .btn-white:hover {
     background: var(--white);
     color: var(--secondary);
     border-color: var(--white);
 }

 header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     padding: 20px 0;
     transition: var(--transition);
 }

 header.scrolled {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
     padding: 15px 0;
 }

 .logo {
     width: 140px;
 }

 .nav-menu {
     display: flex;
     gap: 35px;
 }

 .nav-link {
     font-weight: 600;
     color: rgba(255, 255, 255, 0.8);
     font-size: 1rem;
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--accent);
     bottom: -5px;
     left: 0;
     transition: 0.3s;
 }

 .nav-link:hover {
     color: var(--white);
 }

 .nav-link:hover::after {
     width: 100%;
 }

 header.scrolled .nav-link {
     color: var(--text-heading);
 }

 header.scrolled .nav-link:hover {
     color: var(--primary);
 }

 .home-nav {
     position: relative;
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .home-btn {
     background: transparent;
     border: none;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dropdown-icon {
     font-size: 20px;
     cursor: pointer;
     color: var(--gold);
     transition: 0.3s ease;
 }

 .dropdown-icon.rotate {
     transform: rotate(180deg);
 }

 .home-select {
     position: absolute;
     top: 25px;
     left: 0;
     background: black;
     border: 1px solid #ddd;
     border-radius: 10px;
     min-width: 150px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     display: none;
     z-index: 100;
 }

 .home-select.show {
     display: block;
 }

 .home-select a {
     display: block;
     padding: 10px 14px;
     color: #ffffff !important;
     text-decoration: none;
 }

 .hamburger,
 .btn-close,
 .mobile-login {
     display: none;
 }

 @media (max-width: 992px) {

     .hamburger {
         display: block;
         cursor: pointer;
         font-size: 1.8rem;
         color: #ff0000;
         z-index: 1001;
     }

     .login-btn {
         display: none;
     }

     .nav-menu {
         position: fixed;
         top: 0;
         right: 0;
         width: 280px;
         height: 100vh;
         background: white;
         flex-direction: column;
         justify-content: flex-start;
         align-items: flex-start;
         padding: 60px 20px 20px;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
         transform: translateX(100%);
         transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 1000;
         display: flex !important;
         visibility: hidden;
     }

     .nav-menu.active {
         transform: translateX(0);
         visibility: visible;
     }

     .nav-menu li {
         width: 100%;
         margin: 0;
         margin-bottom: 15px;
     }

     .nav-link {
         display: block;
         font-size: 1.1rem;
         /* padding: 10px 0; */
         color: #333;
         border-bottom: 1px solid #f0f0f0;
     }

     .btn-close {
         display: block;
         position: absolute;
         top: 20px;
         left: 20px;
         font-size: 1.5rem;
         cursor: pointer;
         color: #ff4757;
         transition: 0.3s;
         z-index: 1002;
     }

     .btn-close:hover {
         transform: rotate(90deg);
     }

     .mobile-login {
         display: inline-flex;
         margin-top: 20px;
         width: 100%;
         justify-content: center;
     }

     .nav-menu.active::before {
         content: '';
         position: fixed;
         top: 0;
         left: -100vw;
         width: 200vw;
         height: 100vh;
         background: rgba(0, 0, 0, 0.5);
         z-index: -1;
         opacity: 0;
         animation: fadeIn 0.4s forwards;
         pointer-events: auto;
     }

     @keyframes fadeIn {
         to {
             opacity: 1;
         }
     }
 }

 .hero {
     position: relative;
     padding: 220px 0 150px;
     background: #04091E;
     color: white;
     overflow: hidden;
 }

 #particles-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     opacity: 0.4;
 }

 .shape {
     position: absolute;
     z-index: 1;
     opacity: 0.3;
     animation: floatShape 10s infinite linear;
 }

 .shape-1 {
     top: 15%;
     left: 5%;
     width: 50px;
     animation-duration: 15s;
 }

 .shape-2 {
     bottom: 20%;
     right: 5%;
     width: 80px;
     animation-duration: 20s;
     animation-direction: reverse;
 }

 .shape-3 {
     top: 20%;
     right: 15%;
     width: 40px;
     animation-duration: 12s;
 }

 @keyframes floatShape {
     0% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-30px) rotate(180deg);
     }

     100% {
         transform: translateY(0) rotate(360deg);
     }
 }

 .hero-content {
     position: relative;
     z-index: 5;
     max-width: 800px;
 }

 .typing-text {
     border-right: 3px solid var(--accent);
     white-space: nowrap;
     overflow: hidden;
     width: 0;
     animation: typing 3s steps(30, end) forwards, blink .75s step-end infinite;
 }

 @keyframes typing {
     from {
         width: 0
     }

     to {
         width: 100%
     }
 }

 @keyframes blink {

     from,
     to {
         border-color: transparent
     }

     50% {
         border-color: var(--accent);
     }
 }

 .hero h1 {
     font-size: 5rem;
     margin-bottom: 30px;
     color: white;
     line-height: 1.1;
 }

 .hero p {
     font-size: 1.25rem;
     opacity: 0.8;
     margin-bottom: 50px;
     max-width: 600px;
     line-height: 1.7;
 }

 .floating-badge {
     position: absolute;
     right: 10%;
     bottom: 25%;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     padding: 25px;
     border-radius: 20px;
     display: flex;
     align-items: center;
     gap: 20px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
     animation: floatBadge 5s ease-in-out infinite;
     z-index: 5;
 }

 .badge-icon {
     width: 60px;
     height: 60px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }

 @keyframes floatBadge {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0);
     }
 }

 /* =========================================
   VIDEO MODAL STYLES
   ========================================= */
 .video-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s ease;
     backdrop-filter: blur(5px);
 }

 .video-modal.active {
     opacity: 1;
     visibility: visible;
 }

 .video-container {
     position: relative;
     width: 80%;
     max-width: 900px;
     aspect-ratio: 16 / 9;
     /* Keeps video responsive */
     background: #000;
     border-radius: 12px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     transform: scale(0.8);
     transition: 0.3s ease;
 }

 .video-modal.active .video-container {
     transform: scale(1);
 }

 .close-video {
     position: absolute;
     top: -40px;
     right: 0;
     color: white;
     font-size: 30px;
     font-weight: bold;
     cursor: pointer;
     transition: 0.3s;
 }

 .close-video:hover {
     color: var(--primary);
     /* Or #3C72FC if variable not set */
     transform: rotate(90deg);
 }

 /* Mobile Adjustment */
 @media (max-width: 768px) {
     .video-container {
         width: 95%;
     }

     .close-video {
         top: -35px;
         right: 10px;
     }
 }

 .brand-strip {
     margin-top: 80px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 40px;
     display: flex;
     gap: 50px;
     opacity: 0.6;
     align-items: center;
     position: relative;
     z-index: 5;
 }

 .brand-strip img {
     height: 30px;
     filter: grayscale(1) brightness(10);
     transition: 0.3s;
 }

 .brand-strip img:hover {
     filter: none;
     opacity: 1;
 }

 .marquee {
     background: var(--primary);
     padding: 20px 0;
     overflow: hidden;
     white-space: nowrap;
 }

 .marquee-content {
     display: inline-flex;
     animation: scroll 25s linear infinite;
 }

 .marquee-item {
     font-size: 5rem;
     font-weight: 800;
     color: transparent;
     -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     margin: 0 30px;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .marquee-item span {
     width: 10px;
     height: 10px;
     background: var(--white);
     border-radius: 50%;
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .marquee-item:hover {
     color: rgb(12, 8, 255);
     -webkit-text-stroke: 0;
 }


 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .about {
     background: var(--white);
     overflow: hidden;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .about-images {
     position: relative;
 }

 .img-main img {
     border-radius: 15px;
     box-shadow: var(--shadow);
 }

 .img-float {
     position: absolute;
     bottom: -50px;
     right: -30px;
     border: 10px solid var(--white);
     border-radius: 15px;
     width: 50%;
     box-shadow: var(--shadow);
 }

 .exp-badge {
     position: absolute;
     top: 40px;
     left: 40px;
     background: var(--primary);
     color: var(--white);
     padding: 30px;
     border-radius: 10px;
     text-align: center;
     font-weight: 700;
     box-shadow: var(--shadow);
 }

 .exp-badge span {
     font-size: 2.5rem;
     display: block;
     line-height: 1;
 }

 .sub-title {
     display: inline-block;
     padding: 8px 16px;
     background: rgba(60, 114, 252, 0.1);
     color: var(--primary);
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.85rem;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .quote-box {
     background: var(--light-bg);
     padding: 30px;
     border-left: 5px solid var(--primary);
     margin-top: 30px;
     border-radius: 0 10px 10px 0;
 }

 .services {
     background: var(--light-bg);
 }

 .service-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--white);
     padding: 40px;
     border-radius: 15px;
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid var(--border);
     z-index: 1;
 }

 .service-card::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: var(--primary);
     transition: 0.5s;
     z-index: -1;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary);
     box-shadow: 0 20px 40px rgba(60, 114, 252, 0.2);
 }

 .service-card:hover::before {
     height: 100%;
 }

 .service-card:hover h3,
 .service-card:hover p,
 .service-card:hover .read-more {
     color: var(--white);
 }

 .card-num {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 4rem;
     font-weight: 900;
     color: #F1F5F9;
     line-height: 1;
     transition: 0.4s;
     z-index: -1;
 }

 .service-card:hover .card-num {
     color: rgba(255, 255, 255, 0.1);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: #EEF4FF;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     color: var(--primary);
     margin-bottom: 25px;
     transition: 0.4s;
 }

 .service-card:hover .service-icon {
     background: var(--white);
     color: var(--primary);
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .read-more {
     display: inline-flex;
     margin-top: 15px;
     width: 45px;
     height: 45px;
     border: 1px solid var(--border);
     border-radius: 50%;
     align-items: center;
     justify-content: center;
     color: var(--text-heading);
     transition: 0.4s;
 }

 .service-card:hover .read-more {
     background: var(--white);
     color: var(--primary);
     border-color: var(--white);
 }

 .project-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
 }

 .project-item {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     height: 350px;
     cursor: pointer;
 }

 .project-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.6s;
 }

 .project-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 86, 179, 0.9), transparent);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 30px;
     opacity: 0;
     transform: translateY(20px);
     transition: 0.4s;
 }

 .project-item:hover .project-img {
     transform: scale(1.1);
 }

 .project-item:hover .project-overlay {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width:768px) {
     .project-item .project-overlay {
         opacity: 1;
     }
 }

 .project-cat {
     color: var(--accent);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.8rem;
     margin-bottom: 5px;
 }

 .project-title {
     color: var(--white);
     font-size: 1.5rem;
     font-weight: 700;
 }

 .process-sec {
     background: white;
 }

 .process-card {
     text-align: center;
     padding: 30px;
     position: relative;
 }

 .step-num {
     font-size: 4rem;
     font-weight: 800;
     color: rgba(0, 0, 0, 0.05);
     position: absolute;
     top: 0;
     right: 20px;
 }

 .process-icon {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 20px;
     transition: 0.3s;
 }

 .process-card:hover .process-icon {
     transform: scale(1.2) rotate(10deg);
     color: var(--accent);
 }

 .testimonials {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80');
     background-attachment: fixed;
     background-size: cover;
     padding: 120px 0;
     color: white;
 }

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .testi-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 40px;
     border-radius: 15px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .stars {
     color: #FFB400;
     margin-bottom: 20px;
 }

 .testi-text {
     font-style: italic;
     opacity: 0.9;
     margin-bottom: 25px;
 }

 .client-info {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .client-img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     border: 2px solid var(--accent);
 }

 .team-card {
     background: var(--white);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .team-card:hover {
     transform: translateY(-10px);
 }

 .team-img-wrapper {
     position: relative;
     overflow: hidden;
 }

 .team-img {
     width: 100%;
     transition: 0.5s;
 }

 .social-overlay {
     position: absolute;
     bottom: -60px;
     left: 0;
     width: 100%;
     background: var(--white);
     padding: 15px;
     display: flex;
     justify-content: center;
     gap: 20px;
     transition: 0.4s;
 }

 .social-overlay i {
     cursor: pointer;
 }

 .team-card:hover .team-img {
     transform: scale(1.05);
 }

 .team-card:hover .social-overlay {
     bottom: 0;
     cursor: pointer;
 }

 .team-info {
     padding: 25px;
     text-align: center;
 }

 .team-info h3 {
     font-size: 1.3rem;
     margin-bottom: 5px;
 }

 .team-info span {
     color: var(--primary);
     font-weight: 600;
     font-size: 0.9rem;
 }

 .contact-cta {
     background: var(--light-bg);
 }

 .cta-box {
     background: var(--primary);
     padding: 60px;
     border-radius: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--white);
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(60, 114, 252, 0.3);
 }

 .cta-box::before {
     content: '';
     position: absolute;
     width: 30px;
     height: 30px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     top: -50px;
     right: -50px;
 }

 .cta-box a {
     background: white;
     color: var(--primary);
     padding: 15px 35px;
     border-radius: 5px;
     font-weight: 700;
     transition: 0.3s;
     cursor: pointer !important;
 }

 footer {
     background: #0b0f1a;
     color: #fff;
     padding: 60px 0 20px;
     margin-top: 40px;
     overflow-x: hidden;
 }

 .footer-wrapper {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
 }

 .footer-logo {
     width: 150px;
     margin-bottom: 15px;
 }

 .footer-col p {
     opacity: 0.7;
     line-height: 1.6;
     margin: 15px 0;
 }

 .footer-col h4 {
     margin-bottom: 15px;
     font-size: 18px;
     position: relative;
     color: #00D4FF;
 }

 .footer-col h4::after {
     content: "";
     width: 30px;
     height: 2px;
     background: var(--primary);
     position: absolute;
     left: 0;
     bottom: -5px;
 }

 .footer-col ul li {
     list-style: none;
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #fff;
     opacity: 0.7;
     transition: 0.3s;
 }

 .footer-col ul li a:hover {
     opacity: 1;
     color: var(--primary);
 }

 /* .newsletter {
    display: flex;
    margin-top: 15px;
} */

 .newsletter input {
     padding: 12px;
     border: none;
     outline: none;
     border-radius: 6px 0 0 6px;
     width: 100%;
 }

 .newsletter button {
     background: var(--primary);
     color: #fff;
     border: none;
     padding: 0px 18px;
     /* width: 100%; */
     border-radius: 0 6px 6px 0;
     cursor: pointer;
 }

 .newsletter {
     position: relative;
     display: flex;
     /* flex-wrap: wrap; */
 }

 .newsletter input {
     border: 1px solid transparent;
     transition: 0.3s;
 }

 .newsletter input.error {
     border: 1px solid #e74c3c !important;
     animation: shake 0.3s;
 }

 .newsletter input.success {
     border: 1px solid #2ecc71 !important;
 }

 .newsletter-msg {
     display: block;
     width: 0%;
     font-size: 0.8rem;
     margin-top: 5px;
     font-weight: 600;
     opacity: 0;
     transition: 0.3s;
     height: 0;
 }

 .newsletter-msg.show-error,
 .newsletter-msg.show-success {
     opacity: 1;
     height: auto;
     width: 100%;

 }

 @keyframes shake {
     0% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-5px);
     }

     50% {
         transform: translateX(5px);
     }

     75% {
         transform: translateX(-5px);
     }

     100% {
         transform: translateX(0);
     }
 }

 .footer-socials a {
     color: #fff;
     opacity: 0.7;
     margin-right: 12px;
     font-size: 18px;
     transition: .3s;
 }

 .footer-socials a:hover {
     opacity: 1;
     color: var(--primary);
 }

 .footer-bottom {
     text-align: center;
     margin-top: 30px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 0.6;
 }

 @media (max-width: 900px) {
     .footer-wrapper {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .footer-wrapper {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 1200px) {
     .hero h1 {
         font-size: 3.5rem;
     }
 }

 @media (max-width: 992px) {
     .nav-menu {
         display: none;
     }

     .about-grid {
         grid-template-columns: 1fr;
     }

     .img-float {
         display: none;
     }

     .floating-badge {
         display: none;
     }

     .hero h1 {
         font-size: 3rem;
     }

     .cta-box {
         flex-direction: column;
         text-align: center;
         gap: 30px;
     }

 }

 @media (max-width: 768px) {
     .section-padding {
         padding: 60px 0;
     }

     .hero {
         padding: 150px 0 100px;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .grid-3 {
         grid-template-columns: 1fr;
     }

     .brand-strip {
         flex-wrap: wrap;
         justify-content: center;
     }
 }