body {
    font-family: 'Segoe UI', sans-serif;
    color:#1f2937;
    background:#ffffff;
}

.main-header {
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}
.mega-dropdown {
    position: relative;
}

.mega-dropdown .mega-menu {
    left: 50% !important;
    transform: translateX(-50%);
    min-width: 800px;   /* adjust width if needed */
}
.nav-link {
    font-weight:500;
    color:#1f2937 !important;
    margin-left:15px;
}

.nav-link:hover {
    color:#2563eb !important;
}

/* MEGA MENU */
.mega-menu {
    width:800px;
    border-radius:12px;
    border:none;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.mega-menu h6 {
    font-weight:600;
    margin-bottom:15px;
    color:#2563eb;
}

.mega-menu a {
    display:block;
    padding:6px 0;
    color:#374151;
    text-decoration:none;
    font-size:14px;
}

.mega-menu a:hover {
    color:#2563eb;
}

/* HERO SECTION */
.hero {
    height: 50px
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
}

/* Keep content above animations */
.hero-content {
    position: relative;
    z-index: 5;
}

/* TYPEWRITER */
.hero h1 {
    font-size: 44px;
    font-weight: 700;
    min-height: 60px;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 12s infinite ease-in-out;
}

.shape1 {
    width: 180px;
    height: 180px;
    background: #ffffff;
    top: 10%;
    left: 10%;
}

.shape2 {
    width: 120px;
    height: 120px;
    background: #ffffff;
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.shape3 {
    width: 80px;
    height: 80px;
    background: #ffffff;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0px); }
}

/* Particles canvas */
#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Animations */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SECTION */
.section {
    padding:100px 0;
}

.section-title {
    font-size:34px;
    font-weight:700;
    margin-bottom:40px;
}

/* CARD */
.service-card {
    padding:40px;
    border-radius:12px;
    background:#f9fafb;
    transition:0.3s;
}

.service-card:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

/* CONTACT */
.contact-box {
    background:#f9fafb;
    padding:50px;
    border-radius:12px;
}

/* FOOTER */
footer {
    background:#111827;
    color:#fff;
    padding:40px 0;
}

/* =========================
		   SERVICES SECTION (MODERN)
		========================= */
		.services {
			background: #f5f7fb;
			padding: 45px 60px;
			text-align: center;
		}

		/* TITLE */
		.services h2 {
			font-size: 36px;
			margin-bottom: 50px;
			color: #111;
		}

		.services h2 span {
			color: #4a6cf7;
		}

		/* GRID */
		.service-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 30px;
		}

		/* CARD */
		.service-card {
			background: #ffffff;
			padding: 30px 20px;
			border-radius: 16px;
			transition: 0.3s;
			box-shadow: 0 10px 30px rgba(0,0,0,0.05);
		}

		/* IMAGE */
		.service-card img {
			width: 100%;
			height: 150px;
			object-fit: cover;
			border-radius: 10px;
			margin-bottom: 20px;
		}

		/* TITLE */
		.service-card h3 {
			font-size: 20px;
			margin-bottom: 10px;
			color: #111;
		}

		/* TEXT */
		.service-card p {
			font-size: 14px;
			color: #666;
		}

		/* HOVER EFFECT */
		.service-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 20px 40px rgba(0,0,0,0.08);
		}

		/* BUTTON */
		.service-btn {
			margin-top: 40px;
		}

		.service-btn .btn {
			background: #2d2a70;
			padding: 12px 25px;
			border-radius: 6px;
		}

		.service-btn .btn:hover {
			background: #1f1c5a;
		}
	/* =========================
		   BUTTON
		========================= */
		.btn {
			padding: 10px 20px;
			background: #0078d4;
			border: none;
			color: #fff;
			border-radius: 5px;
			cursor: pointer;
			transition: 0.3s;
		}

		.btn:hover {
			background: #005fa3;
		}
		
		/* =========================
		   PREMIUM ABOUT SECTION
		========================= */
		.about-premium {
			background: linear-gradient(to right, #f8faff, #ffffff);
			padding: 100px 60px;
		}

		/* WRAPPER */
		.about-wrapper {
			max-width: 1200px;
			margin: auto;
			display: flex;
			align-items: center;
			gap: 70px;
		}

		/* IMAGE */
		.about-img {
			flex: 1;
			text-align: center;
		}

		.about-img img {
			width: 100%;
			max-width: 450px;
			transition: 0.5s ease;
		}

		/* FLOAT EFFECT */
		.about-img img:hover {
			transform: translateY(-10px) scale(1.03);
		}

		/* TEXT */
		.about-text {
			flex: 1;
		}

		/* TAGLINE */
		.tagline {
			display: inline-block;
			font-size: 14px;          /* Increased size */
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #4a6cf7;
			margin-bottom: 15px;
			position: relative;
			padding-left: 40px;
		}
		
		/* Decorative line */
		.tagline::before {
			content: "";
			position: absolute;
			left: 0;
			top: 50%;
			width: 30px;
			height: 3px;
			background: #4a6cf7;
			transform: translateY(-50%);
			border-radius: 2px;
		}

		/* HEADING */
		.about-text h2 {
			font-size: 38px;
			margin-bottom: 20px;
			color: #111;
			line-height: 1.3;
		}

		.about-text h2 span {
			color: #4a6cf7;
		}

		/* PARAGRAPH */
		.about-text p {
			color: #555;
			font-size: 16px;
			margin-bottom: 15px;
			line-height: 1.7;
		}

		/* FEATURES */
		.features {
			margin-top: 20px;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 12px;
		}

		.feature-box {
			background: #ffffff;
			padding: 12px 15px;
			border-radius: 8px;
			font-size: 14px;
			color: #333;
			box-shadow: 0 5px 15px rgba(0,0,0,0.05);
			transition: 0.3s;
		}

		.feature-box:hover {
			transform: translateY(-5px);
		}

		/* STATS */
		.stats {
			display: flex;
			gap: 40px;
			margin-top: 25px;
		}

		.stats h3 {
			color: #4a6cf7;
			font-size: 26px;
		}

		.stats p {
			font-size: 14px;
			color: #666;
		}

		/* BUTTON */
		.about-text .btn {
			margin-top: 25px;
			padding: 12px 25px;
			background: #4a6cf7;
			border: none;
			color: #fff;
			border-radius: 6px;
			cursor: pointer;
			transition: 0.3s;
		}

		.about-text .btn:hover {
			background: #2d4de0;
		}
		/* =========================
   ABOUT SECTION
========================= */
.about-section {
    padding: 80px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* RIGHT */
.vision-mission {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.vm-card {
    background: #f5f7fb;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

/* TITLE */
.vm-card h3 {
    color: #4a6cf7;
    margin-bottom: 10px;
}

/* TEXT */
.vm-card p {
    color: #555;
}

/* HIGHLIGHT */
.vm-card.highlight {
    background: #4a6cf7;
    color: #fff;
}

.vm-card.highlight h3 {
    color: #fff;
}

.vm-card.highlight p {
    color: #e0e0e0;
}

/* HOVER */
.vm-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}

		/* =========================
		   RESPONSIVE
		========================= */
		@media (max-width: 992px) {
			.about-wrapper {
				flex-direction: column;
				text-align: center;
			}

			.features {
				grid-template-columns: 1fr;
			}

			.stats {
				justify-content: center;
			}
		}
			
			.image-box {
				width: 100%;
				max-width: 500px;
				margin: auto;
				border-radius: 20px;              /* Rounded corners */
				overflow: hidden;                 /* Important for clipping image */
				box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* Soft shadow */
				background: #1e2a5a;              /* Optional background */
				padding: 10px;                   /* Space inside */
			}

			/* IMAGE */
			.image-box img {
				width: 100%;
				height: auto;
				display: block;
				border-radius: 15px;             /* Inner rounding */
			}
			
			
			/* =========================
			   PRODUCT SECTION
			========================= */
			.product-section {
				background: #ffffff;
				padding: 60px 60px;
			}

			.product-container {
				max-width: 1200px;
				margin: auto;
				display: flex;
				align-items: center;
				gap: 60px;
			}

			/* CONTENT */
			.product-content {
				flex: 1;
			}

			.product-content h2 {
				font-size: 36px;
				margin-bottom: 20px;
				color: #111;
			}

			.product-content h2 span {
				color: #4a6cf7;
			}

			.product-content p {
				color: #555;
				font-size: 16px;
				margin-bottom: 15px;
				line-height: 1.7;
			}

			/* FEATURES */
			.product-features {
				margin-top: 20px;
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				gap: 12px;
			}

			.product-features div {
				background: #f5f7fb;
				padding: 10px 15px;
				border-radius: 8px;
				font-size: 14px;
			}

			/* IMAGE */
			.product-image {
				flex: 1;
				text-align: center;
			}

			.product-image img {
				width: 100%;
				max-width: 450px;
				border-radius: 20px;
				box-shadow: 0 15px 40px rgba(0,0,0,0.1);
			}

			/* BUTTON */
			.product-content .btn {
				margin-top: 25px;
			}

			/* RESPONSIVE */
			@media (max-width: 768px) {
				.product-container {
					flex-direction: column;
					text-align: center;
				}

				.product-features {
					grid-template-columns: 1fr;
				}
			}
		/* =========================
		   CONTACT SECTION
		========================= */
		.contact-section {
			background: #f5f7fb;
			padding: 80px 60px;
		}

		.contact-container {
			max-width: 1200px;
			margin: auto;
			display: flex;
			gap: 50px;
			align-items: flex-start;
		}

		/* LEFT SIDE */
		.contact-info {
			flex: 1;
		}

		.contact-info h2 {
			font-size: 32px;
			margin-bottom: 15px;
			color: #111;
		}

		.contact-info p {
			color: #555;
			margin-bottom: 20px;
		}

		/* INFO BOX */
		.info-box {
			margin-bottom: 15px;
		}

		.info-box strong {
			color: #4a6cf7;
		}

		/* RIGHT SIDE */
		.contact-form {
			flex: 1;
			background: #ffffff;
			padding: 30px;
			border-radius: 12px;
			box-shadow: 0 10px 30px rgba(0,0,0,0.05);
		}

		/* INPUTS */
		.contact-form input,
		.contact-form textarea {
			width: 100%;
			padding: 12px;
			margin-bottom: 15px;
			border: 1px solid #ddd;
			border-radius: 6px;
			font-size: 14px;
		}

		/* FOCUS */
		.contact-form input:focus,
		.contact-form textarea:focus {
			border-color: #4a6cf7;
			outline: none;
		}

		/* BUTTON */
		.contact-form .btn {
			width: 100%;
		}

		/* RESPONSIVE */
		@media (max-width: 768px) {
			.contact-container {
				flex-direction: column;
			}
		}
		
		/* =========================
   CLIENTS SECTION
========================= */
.clients-section {
    background: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.clients-container {
    max-width: 900px;
    margin: auto;
}

/* HEADING */
.clients-container h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

/* TEXT */
.clients-container p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* CLIENT TYPES */
.client-types {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.client-types div {
    background: #f5f7fb;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .client-types {
        grid-template-columns: 1fr;
    }
}
.case-study-pro {
    padding: 80px 20px;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.case-header {
    text-align: center;
    margin-bottom: 40px;
}

.case-header h2 {
    font-size: 36px;
}

.subtitle {
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* META */
.case-meta {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.case-meta div {
    flex: 1;
    min-width: 200px;
}

.case-meta span {
    display: block;
    color: #555;
}

/* IMAGE */
.case-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
}

/* SECTION */
.case-section {
    margin-bottom: 40px;
}

/* SPLIT */
.case-split {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.case-box {
    flex: 1;
    background: #f5f7fb;
    padding: 20px;
    border-radius: 10px;
}

.case-box.highlight {
    background: #eaf0ff;
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-grid div {
    background: #f5f7fb;
    padding: 12px;
    border-radius: 6px;
}

/* IMPACT */
.case-impact {
    background: #f5f7fb;
    padding: 30px;
    border-radius: 12px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.impact-grid h4 {
    font-size: 24px;
    color: #4a6cf7;
}

/* TESTIMONIAL */
.testimonial-pro {
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border-left: 4px solid #4a6cf7;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .case-split {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.download-btn {
    margin: 25px 0;
    text-align: center;
}

.download-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4a6cf7, #0078d4);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

/* ICON */
.download-btn a i {
    font-size: 16px;
}

/* HOVER */
.download-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
