/* ---------- Global Styles ---------- */
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
* {margin:0; padding:0; box-sizing:border-box; font-family: Roboto, verdana, 'Arial', sans-serif;}
body {background-color: #f4f4f9; color: #222;}

/* ---------- Colors ---------- */
:root {
    --dark-blue: #000B58;
    --purple-dark: #3B0270;
    --purple-light: #3E1E68;
    --pure-purple: #62109F;
    --accent: #FFB400;
    --purple: #540863;
    --light-blue: #1A3D64;
    --golden: #FFC50F;
}

/* ---------- Container ---------- */
.container {
    width: 90%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-main {
    padding-top: 30px;
    width: 90%;
    max-width: 1380;
    margin: 0 auto;
    background: #E7EFC7;
    display: flex;
    gap: 20px;
    align-items: streched;
    justify-content: space-between;
}
.sidebar-left {max-width: 920px; width: 66.7%; background: #E7EFC7; border-radius: 12px;}
.sidebar-right {max-width: 460px; width: 33.3%; background: #E7EFC7; border-radius: 12px;}
.sidebar-left, .sidebar-right {display: flex; flex-direction: column; gap: 20px;}
.rounded_box {background: #FFF; padding: 10px; border-radius: 12px; color:#222; padding: 20px; font-size: 1.1rem; line-height: 2.5rem;}
.rounded_box li {margin-left: 20px;}
.rounded_box li::marker {
  color: #e74c3c;   /* dot का रंग */
  font-size: 30px;  /* dot का size */
}
.centerlised {width: 90%; margin: 0 auto; padding:0;}
.sub-header {background: #432323; display: block; padding: 15px 0; width: 100%; position: fixed; top: 60px; left: 0; z-index: 10000;}
.page-header {display: flex; gap: 20px; align-items: center; justify-content: space-between; list-style: none;}
.page-header li {background: transparent;}
.page-header li a {text-decoration: none; background: #7B542F; padding: 8px 15px;border-radius: 10px; color:#fff; font-weight: 500;}
.page-header li a:hover {color: var(--golden);}
.page-link {display: flex; flex-direction: column; gap: 10px;}
.page-link li {list-style: none; margin-left:0;}
.page-link li a {text-decoration: none; font-size: 0.8rem; line-height: 1.0rem; background: #473472; padding: 6px 12px; display: block; color: var(--golden); border-radius: 10px;}
.page-link li a:hover {background: #8FABD4; color: #000;}

.paging-link {display: flex; flex-direction: column; gap: 10px;}
.paging-link li {list-style: none; margin-left:0;}
.inactive {text-decoration: none; background: #473472; padding: 15px 12px; display: block; color: var(--golden); border-radius: 10px;}
.active {background: #FF5656; color: #fff;text-decoration: none; padding: 15px 12px; display: block; border-radius: 10px;}
.inactive:hover {background: #8FABD4; color: #000;}
.active:hover {background: #8FABD4; color: #000;}
/* ---------- Header ---------- */
header {
    background: var(--dark-blue);
    padding: 10px 0;
    position: sticky;
    top:0;
    z-index:1000;
    border-bottom: 1px solid #f0f0f0;
}
header .container {
    display:flex;
    justify-content: space-between;
    align-items: center;
   /*border: 1px solid red;*/
}
.logo-site{display: flex; gap: 20px; align-items: center;}
.logo {width: 40px; height: 40px; background: #fff; border-radius: 50%; border: 2px solid #fff;}
img {width: 100%;}
.white {color: #fff;}
.text-center {text-align: center;}
.text-justify {text-align: justify;}
hr {background: #f0f0f0;}
h1 {color: var(--pure-purple);}
h3 {color: #0E2148;}
/*Ads regarding style*/
.ads{font-size:14px; color: #666;}
.ads-slot-head {display: block; border: 1px solid #C5C7BC; margin: 8px auto; text-align: center; min-height: 100px; max-width: 970px; max-height: 280px; background: #EBEBEB;}
.red {color: red;}
.background {border-radius: 15px; background: #5D688A; padding: 15px 20px; margin: 20px 0;}
/*blockqupte*/
.bq-highlight{
  border-left: 15px solid #FF5656;
  margin:1em 0;
  padding:18px 20px;
  background:#fff8e6;
  border-top:1px solid #ffecb3;
  border-right:1px solid #ffecb3;
  border-bottom:1px solid #ffecb3;
  border-radius:15px;
  color:#4b3b00;
  font-weight:600;
  font-size:16px;
}
.bq-highlight p{ margin:0; }
.bq-highlight footer{ margin-top:8px; font-size:13px; color:#6b5a00; font-weight:500; }{
  margin:1em 0;
  padding:18px 20px;
  background:#fff8e6;
  border:1px solid #ffecb3;
  border-radius:8px;
  color:#4b3b00;
  font-weight:600;
  font-size:16px;
}
.bq-highlight p{ margin:0; }
.bq-highlight footer{ margin-top:8px; font-size:13px; color:#6b5a00; font-weight:500; }
/* ==== button ===== */
.oval-btn {
    display: inline-block;
    padding: 6px 10px;              /* thin height & long width */
    background: #688603;            /* button color */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 50px;            /* oval shape */
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.oval-btn:hover {
    background: #7fae0f;            /* lighter shade on hover */
    transform: translateY(-2px);    /* subtle lift */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.oval-btn:active {
    transform: translateY(0);       /* press effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* ===== stylish blockquote */
.stylish-quote {
    position: relative;
    padding: 20px 30px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    background: #f0f8ff; /* Light background */
    border-left: 15px solid #688603; /* Highlight color */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stylish-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Optional: Add quotation marks */
.stylish-quote::before {
    content: "“";
    font-size: 3rem;
    color: #688603;
    position: absolute;
    top: -10px;
    left: 10px;
}

.stylish-quote::after {
    content: "”";
    font-size: 3rem;
    color: #688603;
    position: absolute;
    bottom: -10px;
    right: 10px;
}
header h2 {color: var(--accent);}
nav ul {display:flex; gap: 25px; list-style: none;}
nav ul li a {color: #fff; font-weight:500; transition:0.3s; text-decoration: none;}
nav ul li a:hover {color: var(--accent);}

/* ---------- Mobile Menu ---------- */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* Desktop Menu */
nav ul {
    display: flex;
    gap: 25px;
}

/* ---------- Hero Section ---------- */
.hero {
    background: linear-gradient(to right, var(--dark-blue), var(--purple-dark));
    text-align: center;
    padding: 60px 20px;
}
.hero h1 {font-size: 3rem; margin-bottom: 20px; color:#FFB400;}
.hero p {font-size: 1.2rem; max-width: 700px; margin:0 auto; line-height:1.6; color:#fff;}
.round-image {
    border: 4px solid #fff;
    border-radius: 50%;
    opacity: 0.7;
    background: #688603;
    margin-bottom: 40px;
    width: 250px;
    cursor: pointer;
    transition: all 0.4s ease; /* Smooth transition for all properties */
}

.round-image:hover {
    opacity: 1;
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 10px 20px #333;
}
/* ---------- Sections ---------- */
section {padding: 50px 20px; text-align:center;}
section h2 {color: var(--dark-blue); margin-bottom: 40px; font-size: 2.2rem;}
section p {max-width: 800px; margin:0 auto 20px; color:#333;}
.card-container {
    display:flex; 
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}
.card {
    background: #fff;
    color:#000;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.card:hover {transform: translateY(-10px);}
.card h3 {margin-bottom:15px; color: var(--purple-dark);}
.card p {font-size: 0.95rem; line-height:1.5;}
article {text-align: center;}
article h2 {color: var(--dark-blue); margin-bottom: 40px; font-size: 2.2rem;}
article p {color: #000; line-height: 32px;}
.body_box{width:98%; padding:1%;background:transparent; margin:10px 0px; border-radius:20px; display:block;}
/* ---------- Testimonials Section ---------- */
.testimonials {
    background: var(--purple-light);
    color: #fff;
    padding: 80px 20px;
}
.testimonials h2 {margin-bottom: 50px; font-size: 2.5rem; color: #FFB400;}
.testimonial-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}
.testimonial-card {
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align:center;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #FFB400;
}
.testimonial-card h4 {margin-top: 15px; margin-bottom:5px; font-size:1.1rem;}
.testimonial-card span {font-size:0.9rem; color:#555;}

/* ---------- Footer ---------- */
/* ---------- Footer Styles ---------- */
footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p, .footer-col li, .footer-col a {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {list-style:none; padding:0;}
.footer-col ul li {margin-bottom:10px;}
.footer-col ul li a {color:#fff; transition:0.3s;}
.footer-col ul li a:hover {color: var(--accent);}

.footer-col form {
    display:flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col input[type="email"] {
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline:none;
}
.footer-col button {
    padding: 10px;
    border:none;
    border-radius:8px;
    background: var(--accent);
    color:#000;
    font-weight: bold;
    cursor:pointer;
    transition:0.3s;
}
.footer-col button:hover {background:#fff; color:#000;}

.social-icons {
    margin-top: 15px;
}
.social-icons a {
    display:inline-block;
    margin-right: 10px;
    background: var(--purple-dark);
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition:0.3s;
}
.social-icons a:hover {background: var(--accent); color:#000;}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

/* Mobile Styles */
@media(max-width: 768px){
    .container-main {flex-direction: column;}
    .sidebar-left, .sidebar-right {width: 100%; max-width: 768px;}
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: var(--light-blue);
        position: absolute;
        top: 75px;
        left: 0;
        padding: 20px;
        border-radius: 8px;
        width: 100%;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    nav ul li {margin:0; border-radius:8px;}
    nav ul li a {display: block; text-align: center; background: #003161; padding: 12px 20px; margin: 0; border-radius:8px;}
    nav ul li a:hover {background: #8FABD4;}
    nav ul.show {
        display: flex;
    }
    img {max-width: 100%;}
    .card-container, .testimonial-container {
        justify-content: space-around;
        align-items: center;
        margin: 10px auto;
    }  
    .footer-container{flex-direction: column; gap:30px;}
}
/* Responsive */
@media(max-width: 768px){

}

/* ---------- Responsive Container ---------- */
@media (max-width: 1440px){.container{width:95%; max-width:1280px;}}
@media (max-width: 1380px){.container{width:95%; max-width:1200px;}}
@media (max-width: 1080px){.container{width:95%; max-width:1000px;}}
@media (max-width: 900px){.container{width:95%; max-width:850px;}}
@media (max-width: 768px){.container{width:95%; max-width:100%; padding:0 15px;}}
@media(max-width:768px){nav ul{flex-direction:column; gap:15px;} .card-container,.testimonial-container{flex-direction:column; gap:25px;}}