
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

        body {
             font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3 {
            color: #0b1e35;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }
        section {
            padding: 50px 0;
            display: flex;
            align-items: center;
        }
		
		.logo-svg path {
  fill: #3A47A8; /* Change SVG color */
}

.navbar-brand img {
    filter: invert(26%) sepia(97%) saturate(5744%) hue-rotate(221deg) brightness(83%) contrast(94%);
}



        /* Navbar */
        .navbar {
            background: #fff; /* White background */
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        .navbar-brand img {
            height: 40px;
        }
        .navbar .nav-link {
            color: #0b1e35; /* Dark text */
            margin: 0 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: #e47b33;
        }
        /* Navbar toggler for mobile */
        .navbar-toggler {
            border-color: rgba(0,0,0,.1);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        /* Mobile Navbar collapse background */
        .navbar-collapse {
            background: #fff; /* White background for mobile menu */
            padding: 5px;
            border-radius: 8px;
            margin-top: 0px;
        }


        /* Hero Section */
        .hero {
            background: #fff; /* Light background for hero */
            color: #333;
			min-height:100vh;
            position: relative;
            overflow: hidden;
            padding: 150px 0;
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 2.9rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: #333; /* Dark text */
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .hero .cta .btn {
            background: #3A47A8;
            color: #fff;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            transition: background-color 0.3s ease;
        }
        .hero .cta .btn:hover {
            background: #3A47A8;
        }
        .hero .cta .btn-outline-light {
            border: 1px solid #3A47A8;
            color: #3A47A8;
            background: transparent;
        }
        .hero .cta .btn-outline-light:hover {
            background: #3A47A8;
            color: #fff;
        }
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Hero Graphics */
        .hero-graphic {
            position: absolute;
            opacity: 0; /* Hidden by default */
            animation-duration: 2s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }
        .graphic-ai {
            top: 10%; left: 5%;
            width: 90px; height: 90px;
            animation-name: fadeInSpin;
            animation-delay: 0.5s;
        }
        .graphic-circle {
            bottom: 15%; right: 8%;
            width: 70px; height: 70px;
            animation-name: fadeInSpin;
            animation-delay: 1s;
        }
        .graphic-star {
            top: 20%; right: 15%;
            width: 40px; height: 40px;
            animation-name: fadeInSpin;
            animation-delay: 1.5s;
        }
        .graphic-gear {
            bottom: 5%; left: 20%;
            width: 60px; height: 60px;
            animation-name: fadeInSpin;
            animation-delay: 2s;
        }
        @keyframes fadeInSpin {
            from {
                opacity: 0;
                transform: translateY(20px) rotate(0deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotate(360deg);
            }
        }

        /* About Section */
        .about {
    
            text-align: center; /* Changed to left align */
        }
        .about .about-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
        }
        .about .about-images img {
            width: 100%;
            height: 150px; /* Fixed height for consistency */
            object-fit: cover; /* Cover the area */
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        .about .about-images img:hover {
            transform: scale(1.03);
        }
        .about .about-content {
            padding-left: 30px; /* Space between images and text */
        }
        @media (max-width: 767.98px) {
            .about .about-images {
                grid-template-columns: 1fr; /* Single column on mobile */
                padding: 0;
            }
            .about .about-content {
                padding-left: 0;
                padding-top: 30px;
                text-align: center;
            }
        }

        /* What We Do */
        .what-we-do {
            background: #fff;
            text-align: center;
        }
        .what-we-do .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .what-we-do .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        .what-we-do .card-body {
            padding: 40px 25px;
        }
        .what-we-do .card-icon {
            font-size: 3rem;
            color: #e47b33;
            margin-bottom: 20px;
            display: block;
        }
        .what-we-do .card-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #0b1e35;
        }
        .what-we-do .card-text {
            color: #555;
        }

        /* Vision Section */
        .vision {
            background: #fff; /* Darker blue */
            color: #111;
            text-align: center; /* Changed to left align */
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
            margin: 50px 0;
        }
        .vision h2 {
            color: #111;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }
        .vision p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .vision .vision-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 767.98px) {
            .vision .vision-content {
                text-align: center;
                margin-bottom: 30px;
            }
        }

        /* Contact Section */
        .contact {
            text-align: center;
       
        }
        .contact p {
            font-size: 1.1rem;
        }
        .contact a {
            color: #111;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        .contact a:hover {
            text-decoration: underline;
            color: #211a2f;
        }
        .contact .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
            padding: 30px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: left;
        }
        .contact .contact-form .form-label {
            font-weight: 600;
            color: #0b1e35;
        }
        .contact .contact-form .btn-primary {
            background: #3A47A8;
            border-color: #3A47A8;
            padding: 10px 25px;
            font-weight: 600;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }
        .contact .contact-form .btn-primary:hover {
            background: #3A47A8;
            border-color: #3A47A8;
        }

        /* Footer */
        .footer {
            background:#3A47A8;
            color: #fff;
            padding:12px 0;
            font-size: 0.9rem;
        }
        .footer .footer-logo img {
            height: 45px;
            margin-bottom: 15px;
        }
        .footer .tagline {
            opacity: 0.8;
            margin-bottom: 0;
        }
        .footer .copyright {
            text-align: right;
      
        }
        @media (max-width: 767.98px) {
            .footer .copyright {
                text-align: center;
                margin-top: 20px;
            }
        }
        
        
        @media screen and (max-width: 992px) {
.hero h1 {
    font-size: 2rem !important;
}

img.hero-graphic.graphic-star, img.hero-graphic.graphic-gear {
    display: none !important;
}

h2 {
    font-size: 1.9rem !important;
	}
	
	.vision h2 {
    font-size: 2rem !important;
	}
	
	}
    
    ul.navbar-nav {
    display: none;
}

button.navbar-toggler {
    display: none;
}


.navbar-collapse {
    padding: 0px !important;
	}
    
    
    div#nf-form-2-cont h3 {
    display: none;
}

.nf-form-fields-required {
    display: none;
}

label#nf-label-field-12 {
    display: none;
}


.label-above .nf-field-label {
    margin-bottom: 3px !important;
}
input#nf-field-6 {
background: #3A47A8;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease; 
}


input[type=email],
input[type=number],
input[type=password],
input[type=reset],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
    background-color: #fff;              
    border: 1px solid #ced4da;            
    border-radius: 0.375rem;             
    padding: 0.375rem 0.75rem;           
    font-size: 1rem;                     
    line-height: 1.5;                     
    color: #212529;                       
    width: 100%;                          
    display: block;                      
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Bootstrap-like focus effect */
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=reset]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
    border-color: #86b7fe;               
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25); 
}

    
    label#nf-label-field-13 {
    display: none !important;
}


#ninja_forms_required_items, .nf-field-container {
    margin-bottom: 12px !important;
}