
        /* --- GLOBAL STYLES --- */
       
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #222;
            line-height: 1.6;
            overflow-x: hidden;
        }     

/* ===== Jabbar Notes - Premium Study Portal ===== */
 



/* ===== Start HERO Section ===== */

/* ===== End of HERO Section ===== */

/* ===== Start Other STYLE CSS ===== */

.question {
  display: flex;
  flex-wrap: wrap;
  background-color: #0d47a1;
  color: white; padding: 2px; font-size: 18px; font-weight: 600; 
  border: 2px solid #0d47a1;
  justify-content: left;
  /*border-left: 4px solid #0d47a1; border-right: 4px solid #0d47a1;*/
}

.answer{
background-color: #e3f2fd; color: #1a237e; padding-left: 15px; font-size: 16px; border-left: 4px solid #0d47a1; border-right: 4px solid #0d47a1; border-bottom: 4px solid #0d47a1; border-radius: 0 0 10px 10px;
    margin-bottom: 4px;
    line-height: 1.2;
  justify-content: left;
}

.container {
  
    display: flex;
  flex-wrap: wrap;          /* allows wrapping */
    width: 100%;
    margin: 0 auto;
    padding: 10px 10px;
    text-align: left;
}
.text {
  width: 70%;;            /* 80% width */
}

.image {
  width: 30%;            /* 20% width */
  height: auto;
}

.image img {
 width: 100%;
}

.more{
width: 100%;
  height: auto;
  display: block;
}

/* 📱 Responsive: image goes below text */
@media (max-width: 500px) {
  
  .text,
  .image {
    flex: 0 0 100%;
    /*width: 100%;*/
  }
}


.h{
    margin: 0; font-weight: bold;
/*    background-color: green;*/
}

.h_d{
    /*background-color: yellow;*/
     margin-top: -10px;
     padding-bottom: 2px;
     margin-bottom: -1;
    }

.accordion-button {
  width: 100%;
  background:linear-gradient(to bottom,#0a4db8,#3a7bd5);
  color: white;
  padding: 12px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 6px;
  margin-bottom: 1px;
  transition: background 0.3s ease;
}

.accordion-button:hover {
  background: #1a1aff;
}

.accordion-content {
  display: none;
  padding: 1px;
  background: #f1f1f1;
  border-radius: 6px;
  margin-bottom: 1px;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bult ul li{
    list-style-type: square;
    
padding: 0;
margin: 0;
}

.topic {
  padding: 2px;
  background: #e3f2fd;
  margin-bottom: 2px;
  cursor: pointer;
  border-radius: 4px;
 
/*  position: relative;*/
}

.topic:hover {
  background: #bbdefb;
}

.topic-content {
  display: none;
  padding: 2px;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* ===== END other STYLE CSS ===== */
/* Footer */





/* Navigation Menu */
      
/* End of Navigation Menu */





/* Image styling with blue border */


.container2 {
    flex: 1;
    max-width: 100%;
    margin: -50px;
    padding: 0 10px;
}



/* Image Side */

/* Call to Action Section */

/* ===== END OF FOOTER ===== */










        /* --- HEADER SECTION --- */
        .top-contact-bar {
            background: #add8e6;
            color: white;
            padding: 8px 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .branding-bar {
            background: #ffffff;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img { height: 50px; width: auto; }

        .logo span { 
            font-size: 1.4rem; 
            font-weight: 800; 
            color: #1e40af; 
            margin-left: 10px;
        }


/* --- Start of Text Scrolling --- */
.header-info-carousel{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

/* Container */
.text-carousel-container{
    background: linear-gradient(135deg,#eff6ff,#dbeafe);
    border-radius:25px;
    border:1px solid #bfdbfe;
    width:300px;
    height:36px;
    overflow:hidden;
    position:relative;
    box-shadow:0 3px 10px rgba(37,99,235,0.15);
}

/* Optional glow edges */
.text-carousel-container::before,
.text-carousel-container::after{
    content:"";
    position:absolute;
    top:0;
    width:40px;
    height:100%;
    z-index:2;
}

.text-carousel-container::before{
    left:0;
    background:linear-gradient(to right,#eff6ff,transparent);
}

.text-carousel-container::after{
    right:0;
    background:linear-gradient(to left,#eff6ff,transparent);
}

/* Sliding text wrapper */
.text-slides{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollText 18s linear infinite;
}

/* Each text item */
.text-slide{
    min-width:220px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d4ed8;
    font-weight:600;
    font-size:13px;
    padding:0 25px;
    letter-spacing:0.3px;
}

/* Hover effect */
.text-carousel-container:hover .text-slides{
    animation-play-state:paused;
}

/* Animation */
@keyframes scrollText{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}
 /* --- End of Text Scrolling --- */


        /* --- Start of STICKY NAVIGATION --- */


 nav {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
    position: sticky;
    top: 0;
    z-index: 2000;
    padding: 12px 20px;
    
    /* Curved shape */
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

    /* Shadow for depth */
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);

    /* Smooth transition */
    transition: all 0.3s ease;
        }
        
        .menu-toggle {
            display: none;
            color: white;
            font-size: 1.3rem;
            padding: 12px 1rem;
            cursor: pointer;
            text-align: center;
            font-weight: 800;
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 10px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            transition: max-height 0.4s ease-in-out;
        }
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

        .menu li { position: relative; }
        .menu a {
           color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .menu a:hover { background: rgba(255, 255, 255, 0.1); }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 3px solid #3b82f6;
        
        }

 .menu li:hover .dropdown { display: block; }
        .dropdown li a { color: #1e293b; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; display: block; }
        .dropdown li a:hover { background: #eff6ff; color: #1d4ed8; }

.dropdown li a:hover {
background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;

    /* Curved highlight */
    border-radius: 20px;

    /* Small slide effect */
    padding-left: 24px;

    /* Soft shadow */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            
        }

 /* --- ENHANCED HERO CAROUSEL --- */
       .hero-carousel{
    height:500px;
    overflow:hidden;
    position:relative;
    background:#000;
}

.img-slides{
    display:flex;
    width:300%;
    height:100%;
    transition:transform 1.2s cubic-bezier(0.65,0,0.35,1);
}

.img-slide{
    width:33.333%;
    height:100%;
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.img-slide::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:inherit;
    animation:kenburns 10s infinite alternate;
}

@keyframes kenburns{
    from{transform:scale(1);}
    to{transform:scale(1.15);}
}

.slide-content{
    position:relative;
    z-index:10;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.2);
    padding:40px 60px;
    border-radius:35px;
    text-align:center;
    max-width:700px;
    margin:0 20px;
    box-shadow:0 25px 50px rgba(0,0,0,0.3);
    color:white;
    font-size:2.8rem;
    font-weight:800;
    transform:translateY(30px);
    opacity:0;
    transition:0.8s ease-out 0.4s;
}

.img-slide.active-animation .slide-content{
    transform:translateY(0);
    opacity:1;
}

.carousel-dots{
    position:absolute;
    bottom:70px;
    left:50%;
    transform:translateX(-50%);
    z-index:100;
    display:flex;
    gap:12px;
}

.dot{
    width:12px;
    height:12px;
    background:rgba(255,255,255,0.4);
    border-radius:50%;
    cursor:pointer;
}

.dot.active{
    background:#fff;
    width:30px;
    border-radius:10px;
}


        /* --- DASHBOARD --- */
        .main-container {
            width: 95%;
            max-width: 1100px;
            background: #ffffff;
            border-radius: 45px;
            padding: 80px 40px;
            margin: -50px auto 60px;
            position: relative;
            z-index: 20;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            text-align: center;
        }

        h2.section-title {
    font-size: 3.5rem; /* Slightly larger for impact */
    font-weight: 800;
    /* Animated Gradient Text */
    background: linear-gradient(to right, #1e40af, #3b82f6, #60a5fa, #1e40af);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
    letter-spacing: -1px;
    animation: shine 4s linear infinite;
}

/* The Moving Underline */
h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 6px;
    width: 100px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #1e40af);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: expandLine 3s infinite ease-in-out;
}

/* Animations */
@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes expandLine {
    0% { width: 60px; opacity: 0.7; }
    50% { width: 150px; opacity: 1; }
    100% { width: 60px; opacity: 0.7; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h2.section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    h2.section-title::after {
        height: 4px;
        bottom: -10px;
        animation: expandLineMobile 3s infinite ease-in-out;
    }
}

@keyframes expandLineMobile {
    0% { width: 40px; }
    50% { width: 100px; }
    100% { width: 40px; }
}

        .unit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .unit-card {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            text-decoration: none;
            padding: 35px 20px;
            border-radius: 25px;
            font-weight: 700;
            transition: 0.4s;
            box-shadow: 0 10px 20px rgba(30,64,175,0.2);
        }

        .unit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(30,64,175,0.4); }

        /* --- BEAUTIFIED WHY-USE SECTION --- */
        .why-aplus { padding: 80px 20px; background: #fff; }
        .why-aplus h2 { text-align: center; font-size: 2.8rem; font-weight: 800; margin-bottom: 50px; color: #1e40af; }
        
        .why-container { max-width: 1150px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        
        .why-card { 
            background: #f8fafc; 
            padding: 35px; 
            border-radius: 30px; 
            border: 1px solid #e2e8f0; 
            transition: 0.4s; 
            text-align: left;
        }

        .why-card:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 20px 40px rgba(30,64,175,0.1); border-color: #3b82f6; }
        
        .icon-box { 
            width: 55px; height: 55px; background: #eff6ff; color: #2563eb; 
            display: flex; align-items: center; justify-content: center; 
            border-radius: 15px; font-size: 1.4rem; margin-bottom: 20px; 
        }

        .why-card h3 { color: #0f172a; margin-bottom: 2px; font-size: 1.3rem; }
        .why-card p { color: #475569; font-size: 0.95rem; line-height: 1.7; }
        
        .full-width { 
            grid-column: span 3; display: flex; align-items: center; gap: 30px; 
            background: linear-gradient(135deg, #1e40af, #3b82f6); color: white; 
        }
        .full-width h3, .full-width p { color: white; }
        .full-width .icon-box { background: rgba(255,255,255,0.2); color: white; }

        /* --- CTA & FOOTER --- */
 .cta-section{
    margin-top: -70px;
    background: linear-gradient(135deg,#2563eb,#1e40af,#1e3a8a);
    color:white;
    padding:40px 20px;
    text-align:center;

    /* Curved section */
    border-top-left-radius:60px;
    border-top-right-radius:60px;
    border-bottom-left-radius:60px;
    border-bottom-right-radius:60px;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* Button container */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:20px 0;
    flex-wrap:wrap;
}

/* Buttons */
.cta-buttons a{
    background:rgba(255,255,255,0.95);
    color:#1e40af;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    letter-spacing:0.5px;

    /* modern effect */
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    transition:all 0.35s ease;
}

/* Hover effect */
.cta-buttons a:hover{
    background:linear-gradient(135deg,#ffd700,#ffcc00);
    color:#000;

    transform:translateY(-4px) scale(1.07);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}
.site-footer{
    background: linear-gradient(135deg, #2563eb, #1e3a8a, #0f172a);
    color: white;
    padding: 60px 20px 25px;

    /* Smooth curved top */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;

    /* Soft shadow */
    box-shadow: 0 -8px 25px rgba(0,0,0,0.25);
}

.footer-container{
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

/* Footer headings */
.footer-container h3{
    margin-bottom: 12px;
    font-size: 20px;
    color: #bfdbfe;
}

/* Footer links */
.footer-container a{
    display: block;
    color: #e0e7ff;
    text-decoration: none;
    margin: 7px 0;
    transition: all 0.3s ease;
}

.footer-container a:hover{
    color: #93c5fd;
    padding-left: 6px;
}

/* Bottom copyright */
.footer-bottom{
    margin-top: 35px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}/* --- MOBILE RESPONSIVE --- */
        @media (max-width: 992px) { .why-container { grid-template-columns: repeat(2, 1fr); } .full-width { grid-column: span 2; } }
        
        @media (max-width: 768px) {
            .branding-bar { height: auto; padding: 15px; flex-direction: column; gap: 10px; }
            
            /* Toggle Logic */
            .menu-toggle { display: block; }
            .menu { 
                display: none; 
                flex-direction: column; 
                width: 100%; 
                background: #1e40af;
                gap: 0;
            }
            .menu.active { display: flex; }
            
            .menu li { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); }
            .menu a { justify-content: space-between; padding: 15px 20px; }
            
            /* Mobile Dropdowns */
            .dropdown { 
                position: static; 
                width: 100%; 
                box-shadow: none; 
                background: #163294; 
                border-top: none;
            }
            .dropdown li a { color: white; padding-left: 40px; }

            .hero-carousel { height: 350px; }
            .slide-content { font-size: 1.6rem; padding: 25px; }
            .why-container { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; flex-direction: column; text-align: center; }
            h2.section-title { font-size: 2.2rem; }
            .unit-grid { grid-template-columns: 1fr 1fr; }
        }


