@charset "utf-8";
/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f5f7fc;
            color: #111827;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: auto;
        }

        /* ================= NAVBAR ================= */

        .navbar {
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 10;
            padding: 25px 0;
			background: rgba(0, 10, 40, 0.75);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
        }

.logo img {
  height: 50px;
}

        .logo span {
            color: #2f6fff;
        }

        .menu {
            display: flex;
            gap: 30px;
        }

        .menu a {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }








html {
    scroll-behavior: smooth;
}

/* ================= FIXED NAVBAR ================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    transition: 0.4s;
	border-bottom: 1px solid #16324a;
}

.navbar.scrolled {
    background: rgba(0, 10, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ACTIVE MENU */

.nav-link {
    position: relative;
    transition: 0.3s;
}

.nav-link.active {
    color: #2ba8ff;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #2ba8ff;
}

/* MOBILE MENU ICON */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE MENU */

@media(max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(0, 10, 40, 0.98);
        border-radius: 15px;
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        color: #fff;
        font-size: 16px;
    }
}






        /* ================= HERO ================= */

        .hero {
            background:
                linear-gradient(rgba(0, 10, 40, 0.62), rgba(0, 10, 40, 0.62)),
                url('../images/hero-img2.jpg');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
			padding-top: 80px;
        }

        .sub-heading {
            color: #2ba8ff;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: 62px;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero p {
            color: #d2d8e8;
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 16px 34px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 600;
            font-size: 16px;
        }

        .btn-primary {
            background: linear-gradient(90deg, #2468ff, #2ba8ff);
            color: #fff;
        }

.contact-form a {
            background: linear-gradient(90deg, #2468ff, #2ba8ff);
            color: #fff;
			border-radius: 50px;
			display: block;
        }

.contact-form a:hover {
            background: linear-gradient(90deg, #2ba8ff, #2468ff);
            color: #fff;
			display: block;
			border-radius: 50px;
        }	

.about-content a:hover {
            background: linear-gradient(90deg, #2ba8ff, #2468ff);
            color: #fff;
        }

.hero-buttons a:hover {
            background: linear-gradient(90deg, #2ba8ff, #2468ff);
            color: #fff;
        }

        .btn-dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            width: 100%;

            border-radius: 40px;
        }

        /* ================= SERVICES ================= */

        .services {
            padding: 100px 0;
            background: #f3f6fc;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title span {
            color: #2f6fff;
            font-size: 14px;
            font-weight: 600;
        }

        .section-title h2 {
            font-size: 46px;
            margin-top: 15px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #fff;
            padding: 40px 35px;
            border-radius: 24px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .service-number {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: linear-gradient(135deg, #2468ff, #2dd4ff);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .service-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
			line-height: 34px;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.8;
        }

        /* ================= ABOUT ================= */

        .about {
            padding: 100px 0;
            background: #fff;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 30px;
        }

        .experience-box {
            position: absolute;
            bottom: 30px;
  right: -14px;
            background: #2468ff;
            color: #fff;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
        }

        .experience-box h3 {
            font-size: 40px;
        }

        .about h2 {
            font-size: 46px;
            margin-bottom: 25px;
			line-height: 58px;
        }

        .about p {
            color: #6b7280;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 35px;
        }

        .feature-box {
            background: #f5f7fc;
            padding: 18px;
            border-radius: 14px;
            font-weight: 500;
        }

        /* ================= CONTACT ================= */

        .contact {
            padding: 100px 0;
            background:
                linear-gradient(rgba(0, 10, 40, 0.88), rgba(0, 10, 40, 0.88)),
                url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .contact-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            color: #fff;
        }

        .contact-left h2 {
            font-size: 46px;
            margin-bottom: 20px;
			line-height: 58px;
        }

        .contact-left p {
            color: #d1d5db;
            line-height: 1.8;
        }

        .info-box {
            background: rgba(255, 255, 255, 0.08);
            padding: 20px;
            border-radius: 14px;
            margin-bottom: 20px;
        }

		.info-box a{
		color: #d1d5db;
		}

		.info-box a:hover{
		color: #2ba8ff;
		}

        .info-box h4 {
            margin-bottom: 8px;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: none;
            background: #f3f6fc;
            margin-bottom: 6px;
            margin-top: 12px;
            border-radius: 12px;
            font-family: inherit;
			font-size: 14px;
        }

        .contact-form textarea {
            height: 140px;
            resize: none;
        }

        .contact-form button {
            width: 100%;
            border: none;
            padding: 16px;
            border-radius: 50px;
            background:none;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
			font-size: 15px;
  			font-family: 'Poppins', sans-serif;
  			background: linear-gradient(90deg, #2468ff, #2ba8ff);
            color: #fff;
			border-radius: 50px;
			display: block;
			margin-top: 15px;
        }
        
        .contact-form button:hover {
            background: linear-gradient(90deg, #2ba8ff, #2468ff);
            color: #fff;
			display: block;
			border-radius: 50px;
        }	

        /* ================= FOOTER ================= */

        footer {
            background: #020817;
            color: #fff;
            text-align: center;
            padding: 25px 0;
            font-size: 14px;
        }

        /* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

    .hero h1,
    .about h2,
    .contact-left h2 {
        font-size: 48px;
    }

    .section-title h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {

    .hero {
        padding: 140px 0 80px;
        text-align: center;
        min-height: auto;
    }

    .hero-content,
    .about-wrapper,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-grid {
/*        grid-template-columns: repeat(2, 1fr);*/
    }

    .hero-text,
    .about-content,
    .contact-left {
        order: 2;
    }

    .hero-image,
    .about-image,
    .contact-form {
        order: 1;
    }

    .hero p {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img,
    .about-image img {
        max-width: 100%;
    }

    .menu {
        display: none;
    }

    .hero h1,
    .about h2,
    .contact-left h2 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .contact-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .about h2,
    .contact-left h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero p,
    .about p,
    .contact-left p {
        font-size: 15px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .contact-box,
    .contact-form {
        padding: 30px;
    }

    .experience-box {
        padding: 18px;
    }

    .experience-box h3 {
        font-size: 28px;
    }

    .btn {
        padding: 14px 26px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
	
	.services {
  padding: 70px 0;
  background: #f3f6fc;
}
	
	.hero-content {
  padding-top: 60px;
}
	
.about {
  padding: 70px 0;
  background: #fff;
}
	
.contact {
  padding: 70px 0;
	}

    .navbar {
        padding: 20px 0;
    }

    .logo {
        font-size: 24px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1,
    .about h2,
    .contact-left h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-card,
    .contact-form,
    .contact-box {
        border-radius: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
    }

    footer {
        font-size: 12px;
        padding: 20px 10px;
    }
}

@media (max-width: 400px) {

    .hero h1,
    .about h2,
    .contact-left h2 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-box,
    .contact-form {
        padding: 20px;
    }
}

.error{
    color:#f64e4e;
}
input.error, textarea.error{border: 1px solid !important;}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #00b894;
}

