:root {
    /* Backgrounds & Gradients */
    --bg-body: #01173d;
    --bg-hero-top: #092439;
    --bg-hero-mid: #1f2937;
    --bg-hero-bottom: #111827;
    --bg-ticker: linear-gradient(to right, #f59e0b, #f97316, #f59e0b);
    
    /* Brand & Accent Colors */
    --color-amber: #f59e0b;
    --color-amber-light: #fbbf24;
    --color-red: #ef4444;
    --color-orange: #f97316;
    --color-purple-blob: rgba(168, 85, 247, 0.15);
    --color-amber-blob: rgba(245, 158, 11, 0.15);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray-light: #d1d5db;
    --text-gray-muted: #9ca3af;
    --text-dark: #111827;
    
    /* Component Specifics */
    --badge-bg: rgba(245, 158, 11, 0.2);
    --badge-border: rgba(245, 158, 11, 0.3);
    --btn-outline-border: #4b5563;
    --footer-border: #374151;
    --card-bg: rgba(31, 41, 55, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);

    --max-width: 1400px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    width: 100%;
    height: 100%;
    
    line-height: 1.5;
}



 .breadcrumb {
      position: relative;
      width: 100%;
      height: 350px; 
      background-image: url('/assets/bredc.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
    }

    .breadcrumb::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 14, 14, 0.655); /* dark overlay */
      z-index: 1;
      opacity: 9;
    }

    .breadcrumb h1 {
      width: 100%;
      text-align: center;
      font-size: 3.2rem;
      text-transform: uppercase;
      font-weight: bold;
      z-index: 2;
      position: relative;
      font-weight: 600;
    font-family: "Poppins", sans-serif;
    }

    /* Responsive text */
  
    @media (max-width: 768px) {
      .breadcrumb {
        height: 30vh;
      }
      .breadcrumb h1 {
        font-size: 2.7rem;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        height: 22vh;
      }
      .breadcrumb h1 {
        text-align: center;
        font-size:1.7rem;
      }
    }




.whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 100px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp_float img {
  width: 100%;
  height: 100%;
  padding: 10px;
}




/* Scroll to top button */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #012a58;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
        }

        #scrollTopBtn:hover {
            background: #034898;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        #scrollTopBtn:active {
            transform: translateY(-1px);
        }






        
/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(to bottom, var(--bg-hero-top), var(--bg-hero-mid), var(--bg-hero-bottom));
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 20px;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

/* --- CONTENT SIDE --- */
.content-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
}

.badge-featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    padding: 6px 16px;
    border-radius: 9999px;
    width: fit-content;
    color: var(--color-amber-light);
    font-size: 14px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.highlight { color: var(--color-amber-light); }

.description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-gray-light);
    max-width: 600px;
}

.icon { width: 20px; height: 20px; color: var(--color-amber); }

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--color-amber);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover { background-color: var(--color-amber-light); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--btn-outline-border);
}

.btn-outline:hover { background-color: rgba(255,255,255,0.05); }

.footer-meta {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    color: var(--text-white);
    border-top: 1px solid var(--footer-border);
}

/* --- VISUAL SIDE (BOOKS) --- */
.visual-container { position: relative; }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.blob-1 { top: -10%; left: -10%; width: 200px; height: 200px; background: var(--color-amber-blob); }
.blob-2 { bottom: -10%; right: -10%; width: 250px; height: 250px; background: var(--color-purple-blob); }

.book-stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    perspective: 1000px;
    position: relative;
    z-index: 1;
}

.book-card {
    position: relative;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.7);
}

.book-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.book-card.side { width: 90px; }
.book-card.featured { width: 130px; z-index: 2; outline: 3px solid rgba(245, 158, 11, 0.5); }
.book-card:hover { transform: translateY(-15px) scale(1.05); }

.tag-new {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--color-red);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
}

.tag-bestseller {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--color-amber), var(--color-orange));
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
}

/* Stats Section */
.stats-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    padding: 16px 8px;
    border-radius: 12px;
    text-align: center;
}

.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--color-amber); }
.stat-label { font-size: 11px; color: var(--text-gray-muted); margin-top: 4px; }

/* --- TICKER BAR --- */
.ticker-bar {
    background: var(--bg-ticker);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-flex {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
}
.ticker-flex::-webkit-scrollbar { display: none; }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
}
.ticker-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- RESPONSIVE BREAKPOINTS --- */

@media (min-width: 768px) {
    .container { padding: 80px 40px; }
    .button-group { flex-direction: row; }
    .btn { width: auto; }
    .book-card.side { width: 180px; }
    .book-card.featured { width: 220px; }
    .tag-bestseller, .tag-new { font-size: 12px; }
    .stat-value { font-size: 1.8rem; }
    .stat-label { font-size: 13px; }
    .ticker-flex { justify-content: center; }
}

@media (min-width: 1024px) {
    .grid-wrapper { grid-template-columns: repeat(12, 1fr); gap: 40px; }
    .content-side { grid-column: span 5; text-align: left; }
    .visual-side { grid-column: span 7; }
    .book-stack { gap: 24px; }
    .book-card.side { width: 200px; }
    .book-card.featured { width: 260px; }
}

@media (min-width: 1280px) {
    .book-card.side { width: 224px; }
    .book-card.featured { width: 280px; }
}


 .text-container {
      width: 100%;
      overflow: hidden;
    background: var(--bg-ticker);
    }
 
    .text {
        font-size: 1.2rem;
        color: var(--text-dark);
        padding: 10px 5px;
        font-weight: 600;
      white-space: nowrap;
      animation: horizontalLoop 30s linear infinite;
    }
 
    @keyframes horizontalLoop {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }


/* about section  */

.heroD {
    max-width: 1400px;
    margin: 2rem auto;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    gap: 2rem;
    overflow: hidden; 
}

.hero-data {
    width: 100%;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.hero-data h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: #163a64;
    
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-data p {
    text-align: justify;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
    
}

/* Image Container Fix */
.hero-image {
    width: 90%; 
    max-width: 550px; /* Mobile par image control */
    
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3; 
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #163a64;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* --- Tablet & Desktop (Media Queries) --- */


@media (min-width: 768px) {
    .heroD {
        flex-direction: row; 
        text-align: left;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .hero-data {
        width: 55%;
        
        text-align: left;
    }
   
    
    .hero-image {
        width: 45%;
        
    }

    .hero-image img {
        max-height: 400px; /* Controlled height for tablet */
    }
}

@media (min-width: 1024px) {
    .heroD {
        gap: 5rem;
        padding: 5rem 3rem;
    }

    .hero-data h2 {
        font-size: 2rem;
    }

    .hero-image img {
        max-height: 450px; 
    }
}

@media (min-width: 1440px) {
    .hero-data h2 {
        font-size: 2.3rem; 
    }

    .hero-image img {
        max-height: 500px;
    }
}

/* 4K screens limit */
@media (min-width: 2000px) {
    .heroD {
        max-width: 1800px;
    }
    .hero-image img {
        max-height: 600px;
    }
}





/* map section  */


        .map-wrapper {
            height: 300px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        





        .our-service-dets{
            width: 100%;
            padding: 2rem 1rem;
    background: linear-gradient(to bottom, var(--bg-hero-top), var(--bg-hero-mid), var(--bg-hero-bottom));
            color: var(--text-white);
        }
        .service-datr{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .service-datr h2{
            
  padding: 1.5rem 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
        }
        
        .service-datr p{
    text-align: center;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.4;
  padding-bottom: 1rem;
}


/* our services */

.sliderCard-section{
    max-width: 1400px;
  width: 100%;
  margin: 1rem auto;
  border-radius: 10px;
  padding: 1rem;
  background-color: #f0efef;
}


.sliderCard-section span{
  font-size: 1.2rem;
  color: #020202;
  font-weight: 900;
}
.main2{
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.slider-wrapper {
  overflow: hidden;
  max-width: 1300px;
  margin: 0 50px 40px;
}

.card-slider .card-item {
  -webkit-user-select: none;
  user-select: none;
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fffefe;
  color: #000;
  padding: 24px;
  border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.384);
}




.card-item .card-image {

            max-width: 100%;
            width: 100%;
            height: 230px;
            object-position: top;
            object-fit: cover;
            overflow: hidden;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
        }




.card-slider .card-item .card-title {
  font-size: 20px;
  margin: 16px 0 8px;
  color: #012a58;
}


.card-slider .card-description{
  font-size: 14px;
  text-align: left;
  line-height: 1.5;
  color: #333333;
  flex-grow: 1;
}
.card-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #000000;
}

.card-slider .slider-button {
  color: #000000;
  margin-top: -40px;
  transition: 0.3s ease;
}

.card-slider .slider-button:hover {
  color: #012a58;
}

@media screen and (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .card-slider .slider-button {
    display: block;
  }
}
@media screen and (max-width:425px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .card-item .card-image{
    height: 200px !important;
    object-fit: cover;
  }
  .sliderCard-section h2{
    padding: 0;
  }
  .sliderCard-section p{
    width: 100%;
    font-size: .9rem;
  }
  .card-slider .card-item{
    height: none;
  }
  .service-datr p{
    text-align: justify;
  }

}


.service_1btn{
    background-color: #012a58;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.service_1btn:hover{
    background-color: var(--color-amber);
    color: var(--footer-border);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.service_1btn .btn-text{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}







/* contact section  */



    .contact-section {
        width: 100%;
    padding: 60px 20px;
    
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-info, .contact-form {
    flex: 1;
    /* min-width: 300px; */
}

/* Info Side Styling */
.contact-info h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--color-amber);
    padding: 12px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #333;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
}

.submit-btn {
    background-color: var(--color-amber);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--color-amber-light);
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-section {
        padding: 40px 10px;
    }

    

    .info-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }
}







/* book section  */
       .section-book {
            max-width: 1400px;
            margin: 2rem auto;
            width: 90%;
            padding: 2rem 1rem;
        }

        .section-book h2 {
            text-align: center;
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 0.5rem;
            width: 100%;
            text-transform: uppercase;
        }

        .section-book .book-des {
            padding-top: 1rem;
            letter-spacing: 0.5px;
            line-height: 1.6;
            font-weight: 450;
            width: 100%;
            text-align: justify;
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #333;
        }

   
    


.latest-publications {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* Header Design */
.pub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}



.header-left h2 {
    font-size: 28px;
    color: #163a64;
    font-weight: 700;
}

/* Circular Buttons */
.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid #163a64;
    background: white;
    color: #163a64;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 18px;
}

.slider-controls button:hover {
    background-color: #163a64;
    color: white;
}

/* Card Design Fix */
.pub-card {
    background: var(--text-gray-muted);
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Slight roundness like image */
    padding: 20px;
    min-height: 450px;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.384);
}

.book-cover-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.book-cover-wrapper img {
    width: 100%; 
    display: block;
    object-fit: cover;
        transition: transform 0.3s ease;
}
.pub-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.pub-content {
    text-align: left;
}

.book-title {
    font-size: 22px;
    color: var(--bg-body);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.divider {
    height: 1px;
    background-color: #eeeeee;
    width: 100%;
    margin: 12px 0;
}

.authors {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-transform: uppercase;
    text-decoration: none;
    text-align: justify;
    font-weight: 500;
    transition: all 0.3s ease;
}
.authors:hover{
    color: var(--color-amber-light);
    cursor: pointer;
}

.publisher {
    font-size: 18px;
    color: var(--bg-body); /* Maroon/Red color like image */
    font-weight: 600;
}
#myBookSwiper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
/* Responsive adjustments */
@media (max-width: 768px) {
     .section-book {
                width: 95%;
                margin: 1.5rem auto;
                padding: 1.5rem 0.5rem;
            }

            .section-book h2 {
                margin-bottom: 0.8rem;
            }

            .section-book > p {
                text-align: left;
                padding-top: 0.8rem;
            }

    .header-left h2 { font-size: 22px; }
    .pub-card { padding: 15px; }
    #myBookSwiper{
        grid-template-columns: repeat(2,1fr);
    }

}
@media (max-width: 480px) {
           .section-book {
                width: 100%;
                padding: 1rem 0.5rem;
            }

            .section-book h2 {
                margin-bottom: 0.5rem;
            }

            .bookData {
                gap: 0.3rem;
            }

            .bookBtn {
                padding: 1.5rem 0 1rem;
                margin-left:.2rem ;
            }
            
    .header-left h2 { font-size: 20px; }
    .pub-card { padding: 10px; min-height: auto; }
    #myBookSwiper{
        grid-template-columns: repeat(1,1fr);
    }
}



