* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}
a {
    display: inline-block;
    text-decoration: none;
}
ul {
    padding: 0px;
    margin: 0px;
}
img {
    width: 100%;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
body {
    font-family: 'Inter', sans-serif;
    /* line-height: 1.6; */
    color: #333;
    overflow-x: hidden;
}

                                                  /*INNER HEADER*/
.inner-header {
    position: relative;
    background: #f5f5f5;
    padding: 170px 0 60px;
    text-align: center;
    overflow: hidden;
}
.inner-header .container {
    position: relative;
    z-index: 1;
}
.inner-title {
    font-size: 42px;
    font-weight: 700;
}

                                                  /* Header Styles */

.mobile-header {
    display: none;
}
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 38px 0px 20px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    background: transparent;
}
.header.hide-header {
  transform: translateY(-100%);
}
.header-container {
    max-width: 1000px;
    /* Tum yahan width control karoge */
    margin: 0 auto;
    padding: 15px 30px;
    background: #bbdbff;
    border-radius: 20px;
}
.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    width: 120px;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s ease;
}
.nav a:hover, .nav a.active {
    opacity: 0.8;
}
.contact-btn {
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
    padding: 6px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.head-contact {
    text-align: center;
}
.contact-btn:hover {
    background: black;
    color: #bbdbff;
}
.header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    transition: transform 0.4s ease;
}
/* Hidden state */
.header.hide {
    transform: translateY(-100%);
}
.menu li {
    position: relative;
}
.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20;
    display: none;
    min-width: 250px;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 6px;
    z-index: 999;
    background:#bbdbff;
    transition:all.4s;
}
.menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    transition: all.4s ease;
    font-size: 13px;
}
.menu .sub-menu li a:hover {
    background: #f5f5f5;
}
.menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
}
                                                      /* Hero Section */
.hero {
    padding: 175px 0 80px;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-books {
    position: relative;
    height: 420px;
    display: flex;
    justify-content: center;
}
.book {
    position: absolute;
    width: 220px;
    height: 320px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    cursor: pointer;
}
.book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.book:hover {
    transform: translateY(-10px) rotate(0deg) !important;
}
.book:hover .book-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.book-1 {
    top: 10px;
    left: 55%;
    z-index: 111;
    transform: rotate(-5deg);
}
.book-2 {
    top: 50px;
    left: 39%;
    z-index: 11;
    transform: rotate(3deg);
}
.book-3 {
    top: 0px;
    left: 25%;
    z-index: 2;
    transform: rotate(6deg);
}
.book-cover {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.book:hover .book-cover::before {
    transform: translateX(100%);
}
.book-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.book-subtitle {
    font-size: 14px;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 10px;
}
.book-author {
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
}
.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
    padding: 0px 170px;
}
.hero-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    padding: 0px 50px;
}
.cta-button {
    background: #0F519E;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
}

                                            /* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}
.grid-pattern-2 {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(280deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}
.circle-1 {
    width: 190px;
    height: 201px;
    top: 15%;
    right: 6%;
    background-image: url('https://inkrichpublishers.com/wp-content/uploads/2026/02/65a7db193b469d4f308b2218_Home-B-1-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}
.circle-2 {
    width: 150px;
    height: 120px;
    bottom: 33%;
    left: 10%;
    background-image: url('https://inkrichpublishers.com/wp-content/uploads/2026/02/65a7db193b469d4f308b2218_Home-B-1-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: rotate(50deg);
}

                                                 /* About Us Section */
.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}
.about-content {
    width: 85%;
    align-items: center;
}
.about-text {
    color: white;
}
.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}
.about-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}
.learn-more-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 30px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.learn-more-btn:hover {
    background: white;
    color: #1e3c72;
}
.about-books-slider.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}
/* 3D Books Carousel Slider */
.about-books-slider {
    position: relative;
    width: 100%;
    height: auto;
    perspective: 1200px;
    overflow: hidden;
    margin: 0px 0;
    padding-top: 25px;
}
.about-books-slider.slick-slide {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -150px;
}
.about-books-slider.slick-center {
    transform: rotateY(0deg) translateZ(200px) scale(1.5);
    z-index: 10;
    opacity: 1;
}
.about-books-slider.slick-slide:not(.slick-center) {
    opacity: 0.7;
}
.about-books-slider img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.3);
}
.about-books-slider.slick-center img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #667eea;
}
/* Navigation arrows */
/*.about-books-slider.slick-prev, .about-books-slider.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(102, 126, 234, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
*/
                                          /* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}
.service-card-1 {
    background: #0F519E;
    color:#fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #0F519E;
    color:#fff;
}
.service-icon.hover {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.service-card:hover .service-icon i{
    color: #0F519E;
    background:#fff;
}

.service-icon i {
    color: #fff;
    font-size: 28px;
    background: #0F519E;
    padding: 10px;
    border-radius: 10px;
     transition: all 0.3s ease;
}
.service-card:hover h3 {
    color: #fff;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0F519E;
    transition: all 0.3s ease;
}
.service-card:hover p {
    color: #fff;
}
.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.learn-more-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    background:#0F519E;
    padding: 7px 25px;
    border-radius: 11px;
    transition: all 0.3s ease;
}
.service-card:hover .learn-more-link {
    background:#fff;
    color:#0F519E;
}

                                        /* Process Section */
.process {
    padding: 100px 0;
    background: white;
}
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.process-header .section-title {
    margin-bottom: 0;
    font-size: 42px;
    font-weight: 700;
    color: #000;
}
.highlight {
    color: #ff6b6b;
    background: none;
    -webkit-text-fill-color: #ff6b6b;
}
.publish-book-btn {
    background: #0F519E;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}
.publish-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.process-card {
    background: #CDEEF9;
    padding: 30px 10px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.process-number {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 30px;
    font-weight: 700;
    color: transparent;
    background: transparent;
    padding: 5px 15px;
    border-radius: 20px;
    -webkit-text-stroke: 1px #667eea;
}
.process-icon {
    width: 50px;
    height: 50px;
    margin: 40px 5px 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
    color: white;
}
.process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}
.process-card p {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    padding-top: 10px;
}

                                   /* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}
.why-choose-content {
    display: grid;
    align-items: center;
}
.why-choose-books {
    position: relative;
    height: 400px;
}
.book-7 {
    top: 0px;
    left: 50px;
    z-index: 3;
    transform: rotate(-5deg);
}
.book-8 {
    top: 20px;
    left: 150px;
    z-index: 2;
    transform: rotate(3deg);
}
.book-7 .book-cover, .book-8 .book-cover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.why-choose-text {
    padding: 40px 0;
}
.why-choose-text .section-title {
    text-align: left;
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 1.2;
}
.why-choose-text ul {
    list-style: none;
    margin-bottom: 40px;
}
.why-choose-text li img {
    width: 30px;
}
.why-choose-text li p {
    margin: 0px;
}
.why-choose-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}
.why-choose-text li svg {
    color: #667eea;
    flex-shrink: 0;
}
.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    opacity: 0.6;
}
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.testimonials-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
    gap: 50px;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-top: 50px;
    padding-bottom: 40px;
}
.section-title .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}
.section-title-1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}
.section-title-1 .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}
.section-title-2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 40px;
}
.section-title-2 .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}
.section-title-3 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
}
.section-title-3 .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
}
.testimonial-nav {
    display: flex;
    gap: 15px;
}
.testimonial-prev, .testimonial-next {
    width: 50px;
    height: 50px;
    border: 2px solid #667eea;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #667eea;
}
.testimonial-prev:hover, .testimonial-next:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}
.testimonials-slider {
    margin: 0 -15px;
}
.testimonial-item {
    padding: 0 5px;
}
.testimonial-content {
    background: white;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    margin: 10px;
}
.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-transform: uppercase;
}
.stars a img {
    width: 120px;
}
.stars {
    padding-left: 90px;
}
.client-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}
.client-details p {
    font-size: 16px;
    color: #666;
    margin: 0;
}
.testimonial-text {
    font-size: 17px;
    line-height: 1.4;
    color: #555;
    font-style: italic;
    padding-bottom: 20px;
}

                                                    /* Slick Slider Customization */

.testimonials-slider .testimonial-content {
    opacity: 0.4;
    filter: blur(1px);
    transition: all 0.1s ease;
}
.testimonials-slider .slick-current .testimonial-content {
    opacity: 1;
    filter: blur(0px);
    /* transform: scale(1.05); */
    ox-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}
.testimonials-slider .slick-slide:not(.slick-current) {
    transform: scale(0.85);
    opacity: 0.6;
}
.testimonials-slider .slick-current {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}
                                             /* Slick Dots Styling */
.testimonials-slider .slick-dots {
    text-align: center;
    margin-top: 40px;
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    position: absolute;
    top: -35%;
    left: -10%;
}
.testimonials-slider .slick-dots li {
    margin: 0;
    list-style: none;
}
.testimonial-video-main video{
    width:100%;
    height:auto;      /* apni requirement ke hisaab se change kar sakte ho */
    object-fit:cover;
    border-radius:15px;
}
.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #0F519E;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
    color: transparent;
}
.testimonials-slider .slick-dots li.slick-active button {
    width: 40px;
    height: 12px;
    background: #0F519E;
    border-radius: 20px;
    border: none;
    transform: scale(1.1);
}
.testimonials-slider .slick-dots li button:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: scale(1.2);
}
.testimonials-slider .slick-dots li.slick-active button:hover {
    background: #0F519E;
    transform: scale(1.15);
}
.testimonials-slider .slick-dots li button:before {
    display: none;
}
                                             /* CTA Section */
.cta-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.cta-form {
    padding: 10px 0;
}
.cta-title {
    font-size: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    width: 76%;
}
.cta-title-5 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    width: 90%;
}
.book-9 {
    top: 33%;
    right: 16%;
    z-index: 111;
    transform: rotate(-5deg);
}
.book-10 {
    top: 30%;
    right: 29%;
    z-index: 11;
    transform: rotate(3deg);
}
.cta-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cta-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}
.feature-item svg {
    color: white;
    flex-shrink: 0;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;

}
textarea#nf-field-7_1 {
    height: 140px !important;
}
input#nf-field-8_1 {
    background: #0F519E !important;
    color: #fff !important;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

                                          /* Footer Section */
.footer {
    background:#0F519E;
    color: white;
    padding: 20px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-logo h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-logo p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}
.link-group h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}
.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.link-group ul li {
    margin-bottom: 12px;
}
.link-group ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}
.link-group ul li a:hover {
    color: white;
    transform: translateX(5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

                                         /*     Services Section      */
.services-section {
    padding: 10px 0px 80px;
    background: #f8f9fa;
}
.services-list {
    margin-top: 50px;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding: 10px 30px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.service-number-col {
    text-align: center;
    padding: 20px 0px;
}
.service-number {
    font-size: 40px;
    font-weight: 700;
    padding-top: 20px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1;
    top: 0;
}
.service-benefits {
    margin-top: 20px;
}
.service-number-col-1 {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 110px;
}
.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-benefits li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}
.service-benefits li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}
.service-benefits-1 {
    margin-top: 20px;
}
.service-benefits-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-benefits-1 h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom:15px;
}
.service-benefits-1 ul.benefits-list li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
}
.service-benefits-1 ul.benefits-list li i {
    color: #0F519E;
    font-size: 18px;
    position: relative;
    padding-right: 10px;
}
.service-cta-button-area {
    margin-top: 60px;
}
.service-cta-btn {
    display: inline-block;
    padding: 10px 38px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.service-cta-btn:hover {
    background:#0F519E;
    transform: translateY(-2px);
    color:#fff;
}
.service-image-col {
    position: relative;
}
.service-image-wrapper {
    position: relative;
    /* overflow: hidden; */
    border-radius: 10px;
}
.service-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-row:hover .service-image-wrapper img {
    transform: scale(1.02);
}
.service-content-col {
    padding: 20px;
}
.service-content-col h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content-col h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 27px;
    padding-top: 80px;
    text-transform: uppercase;
}
.service-content-col h3 a:hover {
    color: #667eea;
}
.service-content-col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}
.service-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}
.service-date, .service-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

                                  /* ABOUT US PAGE STYLING */
                                        
.about-page {
    margin-top: 20px;
}
.about-hero-section {
    background: #bbdbff;
    color: white;
    padding: 80px 0 80px;
    text-align: center;
    /* position: relative; */
    overflow: hidden;
}
.about-hero-section .container {
    position: relative;
    z-index: 2;
}
.about-hero-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
    animation: fadeInUp 1s ease;
    color: #000;
}
.about-hero-section img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

                                        /* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.about-content-section .row {
    margin-bottom: 80px !important;
}
.about-content-section .row:last-child {
    margin-bottom: 0;
}
.about-content-section h3 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    padding-top: 30px;
}
.about-content-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}
.about-content-section p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 0;
}
.about-content-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-content-section img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.mission-main {
    padding: 15px;
    background: #E9F1FA;
    border-radius: 15px;
}
.vision-main {
    border-radius: 15px;
}
.idea-section {
    padding: 80px 0;
    background: white;
}
.idea-section h2 {
    font-size: 2.5em;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
}
.idea-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}
.idea-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.idea-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
.idea-list li:last-child {
    margin-bottom: 0;
}
.idea-list li img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

                                     /*CONTACT US PAGE STYLING*/
.contact-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    position: relative;
    z-index: 0;
}
.contact-image-main{
    position:relative;
}
.contact-image-main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #00000087;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.map {
    width: 100%;
    padding-top: 100px;
}
.map iframe {
    width: 100%;
}
.contact-cards-section {
    padding: 40px 0;
    background: #f8f9fa;
}
.main {
    width: 100%;
    display: flex;
}
.contact-cards-section .row > div {
    display: flex;
}
.contact-card {
    background: #bbdbff8a;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.card-icon {
    margin-bottom: 25px;
}
.card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.contact-card h3 {
    color: #666;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-card p {
    color: #000;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 0;
}
.book-11 {
    top: 25%;
    left: 19%;
    z-index: 111;
    transform: rotate(-5deg);
}
.book-12 {
    top: 30%;
    left: 10%;
    z-index: 11;
    transform: rotate(3deg);
}
.ebooks-section {
    padding: 80px 0;
    background: #f5f5f5;
}
.ebooks-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.ebook-row {
    background: transparent;
    display: flex;
    flex-direction: column;
}
.ebook-number-col {
    display: none;
}
.ebook-image-wrapper {
    border-radius: 25px;
    padding: 0px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}
.ebook-row:nth-child(even) .ebook-image-wrapper {
}
.ebook-image-wrapper img {
    width: 100%;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}
.ebook-content-col {
    margin-top: 25px;
}
.ebook-content-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ebook-content-col h3 a {
    text-decoration: none;
    color: #111;
}
.ebook-content-col p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}
.ebook-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 20px;
}
.single-project-section {
    padding: 80px 0;
    background: #f7f7f7;
}
.project-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.project-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height:auto;
}
.project-hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.project-category {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 30px;
    margin-bottom: 15px;
}
.project-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.project-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
}
.project-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}
.project-navigation a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}
.project-navigation a:hover {
    color: #666;
}
.cta-form {
}
.contact-form {
    background: #dfeaf4;
    padding: 25px 35px;
    border-radius: 18px;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05) inset;
    width: 85%;
}
.cta-form .nf-form-content {
    padding: 0;
}
.cta-form input, .cta-form textarea {
    width: 100%;
    background: #f2f2f2;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    margin-bottom: 18px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.cta-form input:focus, .cta-form textarea:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px #1f5ca9;
}
.cta-form textarea {
    min-height: 140px;
    resize: none;
}
.cta-form .nf-field-element button {
    width: 100%;
    background: #0F519E;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
input#nf-field-8 {
    width: 100%;
    background: #0F519E;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
}
textarea#nf-field-7 {
    height: auto !important;
}
.nf-form-fields-required {
    display: none !important;
}
.cta-form .nf-field-element button:hover {
    background: linear-gradient(to bottom, #1f5ca9, #163f70);
    transform: translateY(-2px);
}
.cta-form .nf-field-label {
    display: none;
}
.cta-form .nf-required {
    display: none;
}
.service-hero {
    padding: 30px 0;
    background: #fff;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-image img {
    width: 100%;
    border-radius: 12px;
    padding: 90px;
}
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}
.service-details {
    padding: 80px 0;
    background: #f8f8f8;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.hero-image {
    
}
.container.two-col h3 {
    color: #000;
    font-size: 32px;
    font-weight: 600;
}
.features-list, .benefits-list {
    list-style: none;
    padding: 0;
    padding-top: 20px;
}
.features-list li, .benefits-list li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-size: 22px;
}
.service-btn {
    display: inline-block;
    padding: 14px 45px;
    background: #0F519E !important;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
.service-btn:hover {
    color: #fff;
}
                                /*      POP UP SECTION STYLING      */

.custom-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.popup-content h3
 {
    padding-bottom: 10px;
}
.popup-content {
  position: relative;
  width: 95%;
  max-width: 500px;
   max-height: 90vh;
  background: #cfd9e3; /* light bluish background */
  padding: 50px 40px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: popupFade 0.35s ease;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* =========================
   NINJA FORM CUSTOM STYLE
========================= */

/* Hide required text line */
.nf-form-fields-required {
  display: none !important;
}

/* Hide labels completely */
.nf-field-label {
  display: none !important;
}

/* Remove red borders default */
.nf-error .nf-element {
  border: none !important;
}

/* Input + Textarea Styling */
.ninja-forms-field {
  width: 100% !important;
  background: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 11px 20px !important;
  font-size: 14px !important;
  color: #333 !important;
  margin-bottom: 0px !important;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Focus effect */
.ninja-forms-field:focus {
  outline: none !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 2px #0F519E33;
}

/* Textarea height */
textarea.ninja-forms-field {
  min-height: 150px !important;
  resize: none;
}

/* Submit Button */
#nf-field-8 {
  background: #0F519E !important;
  border: none !important;
  padding: 12px 25px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
  width: auto !important;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  color:#fff !important;
}

/* Button Hover */
#nf-field-8:hover {
  background: #0F519E !important;
  color: #fff !important;
}

/* Remove error message styling */
.nf-error-msg {
  display: none !important;
}

/* Remove form errors block */
#nf-form-errors-2 {
  display: none !important;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: translateY(-25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}