/* Exact color matching from the screenshot */
:root {
    --primary-blue: #1a237e;
    --dark-blue: #0d1533;
    --light-blue: #283593;
    --accent-blue: #3949ab;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --light-gray: #f8f9fa;
    --border-gray: #dee2e6;
    --white: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    background-color: #0f0f0f;
}

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

/* =========================================
== Custom Classes Like Bootstrap Start ===*/
.font-6 {
    font-size: 6px !important;
}

.font-7 {
    font-size: 7px !important;
}

.font-8 {
    font-size: 8px !important;
}

.font-9 {
    font-size: 9px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-17 {
    font-size: 17px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-19 {
    font-size: 19px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-21 {
    font-size: 21px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-23 {
    font-size: 23px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-25 {
    font-size: 25px !important;
}

.font-26 {
    font-size: 26px !important;
}

.font-27 {
    font-size: 27px !important;
}

.font-28 {
    font-size: 28px !important;
}

.font-29 {
    font-size: 29px !important;
}

.font-30 {
    font-size: 30px !important;
}

.font-31 {
    font-size: 31px !important;
}

.font-32 {
    font-size: 32px !important;
}

.font-33 {
    font-size: 33px !important;
}

.font-34 {
    font-size: 34px !important;
}

.font-35 {
    font-size: 35px !important;
}

.font-36 {
    font-size: 36px !important;
}

.font-37 {
    font-size: 37px !important;
}

.font-38 {
    font-size: 38px !important;
}

.font-39 {
    font-size: 39px !important;
}

.font-40 {
    font-size: 40px !important;
}

.font-41 {
    font-size: 41px !important;
}

.font-42 {
    font-size: 42px !important;
}

.font-43 {
    font-size: 43px !important;
}

.font-44 {
    font-size: 44px !important;
}

.font-45 {
    font-size: 45px !important;
}

.font-46 {
    font-size: 46px !important;
}

.font-47 {
    font-size: 47px !important;
}

.font-48 {
    font-size: 48px !important;
}

.font-49 {
    font-size: 49px !important;
}

.font-50 {
    font-size: 50px !important;
}

.font-64 {
    font-size: 64px !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

/*== Custom Classes Like Bootstrap End =====
==========================================*/

/* Header Section start */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: #0f0f0f;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* border-bottom: 1px solid var(--border-gray); */
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.main-header.scrolled .logo {
    color: var(--primary-blue);
}

.logo span {
    color: var(--accent-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.main-header.scrolled .nav-menu a {
    color: var(--white);
}

.nav-menu a:hover {
    color: #ffeb3b;
}

.main-header.scrolled .nav-menu a:hover {
    color: var(--white);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--border-gray);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    color: var(--text-dark) !important;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-blue) !important;
    padding-left: 25px;
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    margin-left: 8px;
    font-size: 12px;
}

.contact-btn {
    background: var(--primary-blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--accent-blue);
}

.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--white);
    padding: 5px 10px;
    transition: color 0.3s;
}

.main-header.scrolled .navbar-toggler {
    color: var(--primary-blue);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.mobile-menu {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu .nav-menu li {
    margin: 5px 0;
    margin-left: 0;
    width: 100%;
}

.mobile-menu .nav-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s;
    color: var(--text-dark);
}

.mobile-menu .nav-menu a:hover {
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-blue);
}

.mobile-menu .contact-btn {
    color: white !important;
    text-align: center;
    margin-top: 10px;
}

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle:hover {
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-blue);
}

.mobile-dropdown-menu {
    padding-left: 20px;
    display: none;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-menu li {
    margin: 5px 0;
}

.mobile-dropdown-menu a {
    padding: 8px 15px;
    display: block;
    border-radius: 4px;
}

.mobile-dropdown-toggle .dropdown-icon {
    transition: transform 0.3s;
}

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

/* Header Section End */

/* Hero Section Start */
.hero-section {
    background-image: url("../images/home_banner_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(359deg, #7f5fff 0%, #d759ff 50%, #f8cc84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-title {
    font-weight: 700;
    font-size: 120px;
    line-height: 135px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* Hero Section End */

/* Services Section Start */
.services-section {
    padding: 100px 0;
    background-image: url("../images/service_section_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card {
    background: #000;
    border-radius: 30px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-card:hover .card-border,
.service-card:hover .card-border {
    background: #000;
    position: absolute;
    background: linear-gradient(90deg, #7f5fff 0%, #d759ff 50%, #f8cc84 100%);
    background-size: 400% 400%;
    inset: -1px;
    z-index: -1;
    border-radius: 30px;
    animation: borderMDanimate 5s linear infinite;
}

@keyframes borderMDanimate {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 200% 200%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.services-section .service-icon {
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    margin: 0 auto;
}

.services-section .service-title {
    font-size: 22px;
    font-weight: 600;
}

/* Services Section End */

/* About Section Start */
.why-us-section,
.about-section {
    padding: 100px 0;
}

.our_powerful_section .section-title,
.CTA-section .section-title,
.blog-section .section-title,
.testimonial-section .section-title,
.contact-section .contact-title,
.why-us-section .section-title,
.about-section .section-title {
    font-size: 54px;
    font-weight: bold;
}

/* About Section End */

/* Why Choose Us Start */
.our_powerful_section .section_desc,
.blog-section .section_desc,
.testimonial-section .section_desc,
.why-us-section .section_desc {
    font-size: 36px;
}

.why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 30px;
    height: 100%;
    background: #19191b;
}

.why-us-card::after {
    content: "";
    position: absolute;
    background-image: url("../images/corner_bg.png");
    background-repeat: no-repeat;
    background-position: right;
    top: 0;
    left: 0;
    z-index: 0;
    color: #fff;
    width: 100%;
    height: 100%;
}

.why-us-icon {
    margin-bottom: 20px;
}

.why-us-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.why-us-description {
    margin-bottom: 20px;
}

/* Why Choose Us End */

/* Contact Form Start */

.contact-form {
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(to bottom,
            rgba(117, 95, 255, 0.2),
            rgba(215, 89, 255, 0.2),
            rgba(248, 204, 132, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 0;
    margin-bottom: 25px;
    color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 80px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    
}

.contact-form  .form-control:focus{
    background-color:transparent ;
    box-shadow: none; 
}

.contact-form button {
    margin-top: 20px;
    width: 160px;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #7f5fff;
    background: #2e3474;
    color: #fff;
    cursor: pointer;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-subtitle {
    margin-bottom: 30px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(57, 73, 171, 0.25);
}

.submit-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--light-blue);
}

/* Contact Form End */

/* Testimonial Start */
.testimonial-section {
    padding: 80px 0;
    background-image: url("../images/testimonial-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card {
    border-radius: 8px;
    padding: 40px;
    position: relative;
    background-color: #000;
}

.testimonial-card .card-border {
    position: absolute;
    background: linear-gradient(90deg, #7f5fff 0%, #d759ff 50%, #f8cc84 100%);
    background-size: 400% 400%;
    inset: -1px;
    z-index: -1;
    border-radius: 8px;
    animation: borderMDanimate 5s linear infinite;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

/* Testimonial End */

/* Blog Section Start */
.blog-section {
    padding: 80px 0;
    background-image: url("../images/blog_section_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-card .card-border {
    position: absolute;
    background: linear-gradient(90deg, #7f5fff 0%, #d759ff 50%, #f8cc84 100%);
    background-size: 400% 400%;
    inset: -1px;
    z-index: -1;
    border-radius: 30px;
    animation: borderMDanimate 5s linear infinite;
}

.blog-card {
    border-radius: 30px;
    background: #000;
    height: 100%;
}

.blog-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.blog-excerpt {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Blog Section End */

/* CTA Section Start */
.cta-card {
    background: linear-gradient(to right, #d759ff 50%, #7f5fff 100%);
    border-radius: 30px;
}

.cta-card * {
    position: relative;
    z-index: 1;
}

.cta-card:before {
    content: "";
    position: absolute;
    background: #00000024;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 30px;
}

.cta-card .cta-title {
    font-size: 45px;
    font-weight: 700;
}

/* CTA Section End */

/* Footer Start */
.main-footer {
    padding: 80px 0;
    background-image: url("../images/footer_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 76%);
    z-index: 0;
}

.main-footer * {
    position: relative;
    z-index: 1;
}

.footer-links {
    padding-left: 20px;
}

.footer-links li {
    color: #fff;
    /* display: inline-block; */
}

.footer-links li a:hover {
    background: linear-gradient(280deg, #f8cc84, #d759ff, #7f5fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    margin-bottom: 10px;
}

.copyright {
    padding: 20px 0px 20px;
    text-align: center;
    background: linear-gradient(to right,
            rgba(117, 95, 255, 0.2),
            rgba(215, 89, 255, 0.2),
            rgba(248, 204, 132, 0.2));
}

/* Footer End */

/* Common Buttons  */
.btn.btn-primary {
    background: linear-gradient(90deg, #7f5fff 0%, #d759ff 50%, #f8cc84 100%);
    border-radius: 50px;
    border: none;
}

.inner_page_banner {
    margin-top: 90px;
}