﻿
 
/* ===== Isolated Popup CSS (Safe) Center of screen start===== */
/* ===== Confirm Popup – Isolated ===== */
#csConfirmOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 99999;
}

#csConfirmOverlay .csConfirmBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 24px 28px;
    min-width: 340px;
    border-radius: 8px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-top: 5px solid #8B5A2B; /* header color */
}

#csConfirmOverlay .csConfirmMsg {
    font-size: 15px;
    color: #333;
    display: block;
}

#csConfirmOverlay .csConfirmBtnWrap {
    margin-top: 22px;
}

/* OK Button – Header Color */
#csConfirmOverlay .csOkBtn {
    padding: 7px 22px;
    background: #8B5A2B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

#csConfirmOverlay .csOkBtn:hover {
    background: #A66A2C;
}

/* Cancel Button – Neutral */
#csConfirmOverlay .csCancelBtn {
    padding: 7px 22px;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#csConfirmOverlay .csCancelBtn:hover {
    background: #5a6268;
}
/* ===== Isolated Popup CSS (Safe) Center of screen ends===== */

/* =====================================
   GRID WRAPPER Fixed gridview header and first row starts
   ===================================== */
.grid-wrapper {
    height: 600px;
    overflow: auto;
    border: 1px solid #D2B48C;
    background-color: #FDF8E1;
}

/* =====================================
   GRID BASE
   ===================================== */
.fixed-grid {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
}

/* =====================================
   CELLS
   ===================================== */
.fixed-grid th,
.fixed-grid td {
    padding: 9px 14px;
    border: 1px solid #D2B48C;
    background-color: #FFFDF5;
    white-space: nowrap;
}

/* =====================================
   FIXED HEADER
   ===================================== */
.fixed-grid th {
    position: sticky;
    top: 0;
    background-color: #B86E2A;
    color: #FFFFFF;
    font-size: 15px;        /* slightly bigger */
    font-weight: 600;
    text-align: center;
    z-index: 3;
}

/* REMOVE UNDERLINE FROM HEADER LINKS */
.fixed-grid th a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
}

/* OPTIONAL: hover on header links */
.fixed-grid th a:hover {
    text-decoration: none;
    color: #FFF5E1;
}

/* =====================================
   FIXED FIRST COLUMN
   ===================================== */
.fixed-grid th:first-child,
.fixed-grid td:first-child {
    position: sticky;
    left: 0;
    background-color: #EFE2C3;
    font-weight: 600;
    z-index: 2;
}

/* =====================================
   TOP-LEFT CELL
   ===================================== */
.fixed-grid th:first-child {
    background-color: #9C561F;
    color: #FFFFFF;
    z-index: 5;
}

/* =====================================
   ROW HOVER EFFECT
   ===================================== */
.fixed-grid tbody tr:hover td {
    background-color: #F3E6C8;
}


/* =====================================
   GRID WRAPPER
   ===================================== */
.grid-wrapper {
    height: 600px;
    overflow: auto;
    border: 1px solid #D2B48C;
    background-color: #FDF8E1;
}

/* =====================================
   GRID BASE
   ===================================== */
.fixed-grid {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
}

/* =====================================
   CELLS
   ===================================== */
.fixed-grid th,
.fixed-grid td {
    padding: 9px 14px;
    border: 1px solid #D2B48C;
    background-color: #FFFDF5;
    white-space: nowrap;
}

/* =====================================
   FIXED HEADER
   ===================================== */
.fixed-grid th {
    position: sticky;
    top: 0;
    background-color: #B86E2A;
    color: #FFFFFF;
    font-size: 15px;        /* slightly bigger */
    font-weight: 600;
    text-align: center;
    z-index: 3;
}

/* REMOVE UNDERLINE FROM HEADER LINKS */
.fixed-grid th a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
}

/* OPTIONAL: hover on header links */
.fixed-grid th a:hover {
    text-decoration: none;
    color: #FFF5E1;
}

/* =====================================
   FIXED FIRST COLUMN
   ===================================== */
.fixed-grid th:first-child,
.fixed-grid td:first-child {
    position: sticky;
    left: 0;
    background-color: #EFE2C3;
    font-weight: 600;
    z-index: 2;
}

/* =====================================
   TOP-LEFT CELL
   ===================================== */
.fixed-grid th:first-child {
    background-color: #9C561F;
    color: #FFFFFF;
    z-index: 5;
}

/* =====================================
   ROW HOVER EFFECT
   ===================================== */
.fixed-grid tbody tr:hover td {
    background-color: #F3E6C8;
}


/* =====================================
   GRID WRAPPER Fixed gridview header and first row  Ends
   ===================================== */
   
   
   
   
   
   
   
   
   
/* ===========================
   GLOBAL RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: "Inter", sans-serif;
   
  background: #fefae0ff;
  color: #333;
  overflow-x: hidden;
}
/* Small devices (up to 768px) */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}

/* Medium devices (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    body {
        overflow-x: hidden;
    }
}

/* Large devices (above 1200px) */
@media (min-width: 1201px) {
    body {
        overflow-x: hidden;
    }
}

/* ===========================
   HEADER - CARD STYLE
=========================== */
/* ===========================
   HEADER - CARD STYLE
=========================== */
/* Top Bar */
.top-bar {
    width: 100%;
    background: #bc6c25ff;
    padding: 0px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    flex-wrap: nowrap; /* Keep all elements in one line */
}

/* Left Section */
.top-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    margin-left: 111px;
}

/* India Flag */
.flag-img {
    height: 20px;
    width: auto;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Government Text */
.govt-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inter;
    color: #fefae0ff;
    white-space: nowrap; /* Prevent wrapping */
    flex-shrink: 1;      /* Shrink on small screens */
}

/* Logo after text */
.right-logo {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

/* Right Buttons */
.top-right {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap; /* Keep buttons inline */
    align-items: center;
    margin-right: 91px;
}

/* Buttons */
.top-btn {
    background:#606c38ff;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s ease;
    white-space: nowrap;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 150%;
    right: 0;
    background: #606c38ff;
    min-width: 140px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.lang-menu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.lang-menu a:hover {
    background: #bc6c25ff;
    color: white;
}

/* -----------------------------
   RESPONSIVE MEDIA QUERIES
----------------------------- */

/* Medium Devices: Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .top-right {
        margin-right: 40px;  /* reduce extra margin */
        gap: 6px;
    }

    .top-btn {
        padding: 3px 10px;
        font-size: 13px;
    }

    .lang-menu {
        min-width: 120px;
    }

    .lang-menu a {
        font-size: 13px;
        padding: 6px 10px;
    }

    .right-logo {
        height: 32px;
    }
}

/* Small Devices: Mobile (up to 767px) */
@media (max-width: 767px) {
    .top-right {
        display: flex;
        flex-direction: column; /* stack vertically */
        align-items: flex-end;  /* align to right */
        margin-right: 10px;     /* reduce side margin */
        gap: 5px;
    }

    .top-btn {
        padding: 6px 12px;
        font-size: 14px;
        width: 100%;           /* make buttons full-width */
        text-align: center;    /* center text */
        box-sizing: border-box;
    }

    .lang-dropdown {
        width: 100%;
    }

    .lang-menu {
        position: static;      /* dropdown flows naturally */
        top: auto;
        right: auto;
        width: 100%;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .lang-menu a {
        padding: 10px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-menu {
        position: static;      /* same for login dropdown */
        width: 100%;
    }

    .dropdown-menu a {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .right-logo {
        height: 28px;
    }
}
/* -----------------------------
   MOBILE RESPONSIVE (up to 767px)
----------------------------- */
@media (max-width: 767px) {

    .top-right {
        display: flex;
        flex-wrap: wrap;         /* allow wrapping */
        gap: 5px;
        margin-right: 10px;
    }

    /* Make first item occupy full width if needed */
    .top-right > :first-child {
        flex: 1 1 100%;          /* first item full width */
    }

    /* Next 3 items go to next line and share space */
    .top-right > :nth-child(n+2) {
        flex: 1 1 calc(33.33% - 5px);  /* each button ~1/3 width */
        text-align: center;
    }

    .top-btn {
        padding: 6px 12px;
        font-size: 14px;
        box-sizing: border-box;
    }

    /* Adjust dropdowns to fit the new layout */
    .dropdown-menu,
    .lang-menu {
        position: static;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Medium Devices (Tablets, 768px - 1024px) */
@media (max-width: 1024px) {
    .top-btn {
        padding: 3px 10px;
        font-size: 13px;
    }

    .lang-menu {
        min-width: 120px;
    }

    .lang-menu a {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Small Devices (Mobile, up to 767px) */
@media (max-width: 767px) {
    .top-btn {
        padding: 2px 8px;
        font-size: 12px;
    }

    .lang-dropdown {
        position: static;  /* So dropdown appears below naturally */
    }

    .lang-menu {
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .lang-menu a {
        padding: 10px;
        font-size: 14px;
    }
}

















/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    right: 0;
    background: #283618ff;
    display: none;
    flex-direction: column;
   min-width: 180px;
    border-radius: 4px;
    padding: 10px 12px;
    z-index: 1000;
}

.dropdown-menu a {
    padding: 10px 0px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: #bc6c25;
}

.show-menu {
    display: flex !important;
}

/* Ensure dropdown button stays inline */
.top-right .dropdown {
    display: inline-block;
}

/* =====================
   Mobile / Tablet Responsive
===================== */

/* Large tablets (<= 992px) */
@media (max-width: 992px) {
    .top-bar { padding: 8px 15px; }
    .flag-img, .right-logo { height: 32px; }
    .govt-text { font-size: 16px; }
    .top-btn { padding: 3px 10px; font-size: 13px; }
    .dropdown-menu { top: 38px; min-width: 140px; }
}

/* Small tablets / phones (<= 768px) */
@media (max-width: 768px) {
    .flag-img, .right-logo { height: 28px; }
    .govt-text { font-size: 14px; }
    .top-btn { padding: 3px 8px; font-size: 12px; }
    .dropdown-menu { top: 35px; min-width: 130px; }
}

/* Extra small phones (<= 480px) */
@media (max-width: 480px) {
    .flag-img, .right-logo { height: 24px; }
    .govt-text { font-size: 12px; }
    .top-btn { padding: 2px 6px; font-size: 11px; }
    .dropdown-menu { top: 30px; min-width: 120px; }
}
/* Large tablets (≤ 992px) */
@media (max-width: 992px) {
    .dropdown-menu a {
        padding: 8px 6px;   /* Slightly smaller padding */
        font-size: 13px;    /* Reduce font size */
    }
}

/* Small tablets / large phones (≤ 768px) */
@media (max-width: 768px) {
    .dropdown-menu a {
        padding: 7px 5px;   /* Shrink more */
        font-size: 12px;
    }
}

/* Extra small phones (≤ 480px) */
@media (max-width: 480px) {
    .dropdown-menu a {
        padding: 6px 4px;   /* Minimal padding for tiny screens */
        font-size: 11px;
    }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
    .top-bar {
        padding: 5px 8px;       /* smaller padding */
        font-size: 12px;
    }

    .top-left {
        gap: 5px;               /* less space between flag and text */
    }

    .flag-img, .right-logo {
        height: 22px;           /* smaller logos */
    }

    .govt-text {
        font-size: 10px;        /* smaller text */
        white-space: nowrap;
    }

    .top-right {
        gap: 5px;               /* smaller spacing between buttons */
    }

    .top-btn {
        padding: 2px 6px;       /* smaller buttons */
        font-size: 10px;
    }

    .dropdown-menu {
        top: 28px;              /* adjust dropdown position */
        min-width: 110px;       /* smaller dropdown width */
    }

    .dropdown-menu a {
        padding: 5px 4px;       /* smaller dropdown items */
        font-size: 10px;
    }
}

@media (max-width: 992px) {
    .top-right {
        margin-right: 50px;
    }
    .top-left {
        margin-left: 60px;
    }
}
@media (max-width: 768px) {
    .top-right {
        margin-right: 30px;
        gap: 6px;
    }
    .top-left {
        margin-left: 40px;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .top-right {
        margin-right: 15px;
        gap: 4px;
    }
    .top-left {
        margin-left: 20px;
        gap: 4px;
    }
}
@media (max-width: 360px) {
    .top-right {
        margin-right: 10px;
        gap: 3px;
    }
    .top-left {
        margin-left: 10px;
        gap: 3px;
    }
}




/* Logo Section */
.logo-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;           /* FIXED LEFT + RIGHT GAP */
    background: #dda15eff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);

    font-family: "Inter", sans-serif;

    position: relative;
    z-index: 99;

    /* prevents layout from breaking when zooming */
    box-sizing: border-box;
}

/* Remove the pushing space */
.logo-left::before {
    content: none !important;
}

/* Add correct gap between logo image & text */
.logo-left {
    display: flex;
    align-items: center;
    gap: 15px;           /* ★ gap between logo & text */
    padding-left: 0px;   /* ★ makes sure it stays left */
}

/* Main Logo */
.main-logo {
    height: 60px;
    width: auto;
}

/* Text */
.logo-text {
    font-size: 38px;
    font-weight: 600;
    color: #994818;
    padding: 10px;
    margin-bottom: 4px;
    font-family: "Inter", sans-serif;
}


.logo-subtext {
    font-size: 10px;
    font-weight: 600;
    color: #994818;
    margin-top: 0px;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
    font-weight : bold;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;  /* fixed height */
    font-family: "Inter", sans-serif;
}

.logo-text .title {
    font-size: 24px; /* change freely */
}

.logo-text .sub-title {
    font-size: 12px; /* change freely */
}



/* Right Logos */
.logo-right {
    display: flex;
    align-items: center;
    gap: 0px;                    /* GAP between right side logos */
}

/* Add extra gap after last logo (RIGHT side) */
.logo-right::after {
    content: "";
    width: 20px;
}

/* Small Logos */
.small-logo {
    height: 68px;
    width: auto;
    transition: 0.3s;
    padding: 8px;
}


.small-logo:hover {
    transform: scale(1.1);
}

.logo-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    width: 100%;
    background: #dda15e;
}

.logo-wrapper {
    width: 100%;
    max-width: 1400px;   /* stops expansion */
    margin: auto;        /* centers it */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   MEDIA QUERIES – RESPONSIVE
   =========================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .logo-section {
        padding: 15px 30px;
    }

    .main-logo {
        height: 50px;
    }

    .small-logo {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }
    .logo-subtext {
    font-size: 9px;
   
}

}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .logo-section {
        padding: 12px 20px;
    }

    .logo-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-left,
    .logo-right {
        justify-content: center;
    }

    .main-logo {
        height: 45px;
    }

    .small-logo {
        height: 35px;
    }

    .logo-text {
        font-size: 18px;
    }
    .logo-subtext {
    font-size: 9px;
   
}
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .logo-section {
        padding: 10px 15px;
    }

    .main-logo {
        height: 40px;
    }

    .small-logo {
        height: 30px;
    }

    .logo-text {
        font-size: 16px;
    }
    .logo-subtext {
    font-size: 9px;
   
}
}
















/* NAVBAR */
.main-navbar {
    width: 100%;
    background: #bc6c25ff;
    padding: 12px 25px;
    font-family: "Poppins", sans-serif;
   
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center; /* center the entire menu */
    position: relative;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #fefae0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 10px;       /* vertical padding restores navbar height */
    line-height: 1.5;        /* ensures text is vertically centered */
    transition: 0.3s;
    display: flex;            /* flex for vertical alignment */
    align-items: center;      /* centers text + arrow vertically */
}





.nav-menu li a:hover {
    color: #fff;
    background: #606c38ff;
    border-radius: 4px;            /* smooth rounded corners */
}


/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    font-size: 26px;
    color: #fefae0;
    cursor: pointer;
    position: absolute;
    right: 10px; 
}


@media screen and (width: 1024px) and (height: 600px) {
    .nav-container {
        justify-content: center;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-menu li a {
        font-size: 15px;
        padding: 5px 10px;
    }
}


/* MOBILE VIEW */
@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        position: relative;
    }

    .nav-toggle {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: -19px;
        z-index: 9999;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 17px;
        left: 0;
        width: 100%;
        background: #283618;
        flex-direction: column;
        padding: 15px 0;
        gap: 15px;
        text-align: center;
        border-bottom: 4px solid #dda15e;
        z-index: 999;
    }

    .nav-menu.show {
        display: flex;
    }
}
@media (max-width: 768px) {
    .main-navbar {
        padding: 21px 15px;   /* smaller padding */
        background: #bc6c25ff; /* keeps same color */
    }
}

/* ==========================
   NAVBAR STACKING (ABOVE SLIDER)
=========================== */
.main-navbar {
    position: relative;
    z-index: 999999;
    overflow: visible;
}

.nav-container,
.nav-menu {
    overflow: visible;
}

/* ==========================
   DROPDOWN BASE
=========================== */
.dropdown-nav {
    position: relative;
}

.dropdown-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #283618;
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 3px solid #dda15e;
    border-radius: 5px;
    z-index: 9999;
}

.sub-menu li {
    position: relative; /* Needed for nested submenus */
}

.sub-menu li a {
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    display: block;
    transition: 0.3s;
}

.sub-menu li a:hover {
    background: #bc6c25;
}

/* ==========================
   SHOW DROPDOWN ON HOVER
=========================== */
.dropdown-nav:hover > .sub-menu {
    display: flex;
}

/* ==========================
   NESTED DROPDOWN POSITION
=========================== */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 5px;
}

/* ==========================
   ARROW ROTATION
=========================== */
.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate ▼ → ▲ on hover */
.dropdown-nav:hover > a .arrow {
    transform: rotate(180deg);
}



/* ==========================
   MOBILE DROPDOWN (≤768px)
=========================== */
@media (max-width: 768px) {

    .dropdown-nav {
        width: 100%;
    }

    .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: #bc6c25;
        border-radius: 0;
        padding: 5px 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .dropdown-nav.active .sub-menu {
        max-height: 500px;
    }

    .dropdown-nav.active > a {
        background: #bc6c25;
    }

    .sub-menu li a {
        padding: 12px 15px;
        font-size: 14px;
        background: #283618;
        color: #fff;
        text-align: center;
        border-bottom: 1px solid;
    }

    .sub-menu li a:hover {
        background: #bc6c25;
    }
}

/* ==========================
   REMOVE BULLETS (SAFETY)
=========================== */
.nav-menu,
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}












/* ===== HERO SLIDER ===== */
.hero-slider {
    width: 100%;
    height: 750px;          /* your required height */
    position: relative;
    overflow: hidden;
    background: #000;       /* black background around images */
}

/* ===== SLIDES ===== */
.hero-slider .swiper-slide {
    width: 100%;
    height: 750px;          /* match slider height */
    display: flex;
    justify-content: center; /* center image horizontally */
    align-items: center;     /* center image vertically */
    background-color: #fefae0;  /* black background if image is smaller */
}

/* ===== IMAGES ===== */
.hero-slider img {
    width: 1600px;           /* fixed image width */
    height: 600px;           /* fixed image height */
    object-fit: cover;       /* maintain image coverage */
    display: block;
    margin-top:-80px;
}

/* ===== CAPTION ===== */
.caption {
    position: absolute;
    bottom: 30px;               
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    color: #fff;
font-family: "Inter", sans-serif;

    padding: 20px 15px;
   background: linear-gradient(to top, rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.0));
    border-radius: 10px;
}

/* Main heading with strong black outline + shadow */
.caption h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;

    text-shadow: 
        2px 2px 0 #283618ff,
        -2px 2px 0 #283618ff,
        2px -2px 0 #283618ff,
        -2px -2px 0 #283618ff,
        0px 2px 0 #283618ff,
        0px -2px 0 #283618ff,
        2px 0px 0 #283618ff,
        -2px 0px 0 #283618ff;
}


/* Extra background / offset layer */
.caption h2::before {
    content: attr(data-text); /* same text as h2 */
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: -1;
    color: rgba(0,0,0,0.4);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;

}

/* Paragraph below heading */
.caption p {
    font-size: 3.8rem;
    opacity: 0.9;
    text-shadow:
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}

/* ===== CONTROLS ===== */
.swiper-button-prev,
.swiper-button-next {
    color: #283618ff;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #283618ff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }

    .hero-slider .swiper-slide {
        height: 350px;
    }

    .hero-slider img {
        width: 90%;      /* scale image for mobile */
        height: auto;    /* maintain aspect ratio */
    }

    .caption h2 {
        font-size: 1.6rem;
    }

    .caption p {
        font-size: 0.9rem;
    }
}






























/* Default (Desktop) */
.scroll-text1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #283618ff;
  color: #fefae0ff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.scroll-content1 {
  display: block;
  white-space: normal;
}

.scroll-content1 span {
  display: block;
  margin-bottom: 5px;
}

/* ------------------------------------ */
/* ✅ Tablet (max-width: 768px) */
/* ------------------------------------ */
@media (max-width: 768px) {
  .scroll-text1 {
    font-size: 14px;
    padding: 8px 15px;
    white-space: normal;  /* allow wrapping on smaller screens */
  }

  .scroll-content1 span {
    font-size: 14px;
  }
}

/* ------------------------------------ */
/* ✅ Mobile (max-width: 480px) */
/* ------------------------------------ */
@media (max-width: 480px) {
  .scroll-text1 {
    font-size: 9px;
    padding: 16px 12px;
  }

  .scroll-content1 span {
    font-size: 13px;
  }
}





.info-marquee {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #283618ff;
    padding: 22px 20px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Only numbers bold — same size */
.info-marquee .num {
    font-weight: 700; /* bold but same size */
}














.discovery-section.glass {
  padding: 100px 20px; /* reduce top/bottom padding from 100px to 60px */
 font-family: "Inter", sans-serif;
  background: #fefae0ff
}


/* Logo container */
.discovery-logo {
    text-align: center;   /* center the logo */
    margin-bottom: 20px;  /* space between logo and headlines */
}

/* Logo image */
.logo-image {
    max-width: 100px;     /* adjust size */
    width: 100%;
    height: 100px;
}



/* glass panel stays same */
.glass-panel {
  background: #283618ff;
  backdrop-filter: blur(15px);
  padding: 40px 30px; /* reduced slightly to fit better */
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
  margin-top: 0px;
  position: relative;
  z-index: 10;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.search-panel__group {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  gap: 15px;
 
  width: 100%;
}

.search-panel__input {
  flex: 1;
  padding: 14px 25px;
  border-radius: 50px;
  border: none;
  font-size: 1.5rem;
  outline: none;
  background: #fefae0ff;
}

.search-panel__button {
  padding: 14px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #dda15eff;
  color: #fff;
  transition: 0.3s ease;
   font-family: "Inter", sans-serif;
}

.search-panel__button:hover {
  transform: translateY(-2px);
  background: #bc6c25ff;
}

.filter-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-cloud__pill {
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: #bc6c25ff;
  transition: 0.3s;
   font-family: "Inter", sans-serif;
}

.filter-cloud__pill:hover {
  background: #606c38ff;
  transform: scale(1.05);
}
.discovery-headlines {
  text-align: center;
  margin-bottom: 30px;
  color: #bc6c25ff;  /* you can change the color */
  
}

.headline-title {
   font-family: "Inter", sans-serif;
  font-size: 2.5rem;  /* standard headline size */
  font-weight: 800;   /* slightly bold */
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.headline-subtitle {
   font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.5;
  max-width: 800px;   /* optional: limit width for better readability */
}





/* ================================
   📱 Tablet Screens (≤ 992px)
================================ */
@media (max-width: 992px) {

  .glass-panel {
    padding: 45px 30px;
    border-radius: 30px;
    max-width: 95%;
  }

  .search-panel__group {
    flex-direction: column;
    gap: 12px;
  }

  .search-panel__input,
  .search-panel__button {
    width: 100%;
    border-radius: 40px;
  }
}


/* ================================
   📱 Mobile Screens (≤ 576px)
================================ */
@media (max-width: 576px) {

  .glass-panel {
    padding: 35px 25px;
    border-radius: 25px;
    margin-top: -20px;  /* Adjust if slider overlap */
  }

  .search-panel__group {
    flex-direction: column;
    gap: 10px;
  }

  .search-panel__input {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .search-panel__button {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .filter-cloud__pill {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
















































.about-section11 {
    width: 100%;
    min-height: auto; /* remove forced 100vh */
    display: flex;
    align-items: flex-start; /* align top to remove extra gap */
    justify-content: center;
    padding: 100px 0; /* top/bottom padding */
    margin-top: 0px; /* already 0 */
}

.container11 {
    display: flex;
    width: 90%;
    max-width: 1600px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Left Side */
.content-side11 {
    flex: 1.2;
    padding: 40px; /* reduced from 60px */
    position: relative;
    z-index: 2;
    color: #fefae0ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2196f32e;
}

/* Right Side remains same */
.gallery-side {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
     background: #2196f32e;
}
.red-bg-overlay11 {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background: linear-gradient(135deg, #283618ff 0%, #283618ff 100%), 
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png'), #bc6c25ff;
    z-index: -1;
    /* This creates the wave/curve shape */
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.text-content11 {
        max-width: 700px;
    text-align: justify;
}

.title11 {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #fefae0ff;
}

.quote11 {
    font-size: 1.2rem;
    border-left: 4px solid #fefae0ff;
    padding-left: 15px;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}

.main-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #fefae0ff;
}

.main-text11 p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: "Inter", sans-serif;
    color: #fefae0ff;
}

.footer-note11 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #dda15eff;
    font-family: "Inter", sans-serif;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-1 { grid-column: 1 / 3; grid-row: 2 / 3; } /* Large middle image */
.item-2 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-3 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-4 { grid-column: 1 / 3; grid-row: 3 / 4; }

/* ===============================
   RESPONSIVE ABOUT SECTION
=============================== */

/* Tablet & Medium Screens */
@media (max-width: 992px) {

    .about-section11 {
        margin-top: -50px;
        padding: 40px 0;
    }

    .container11 {
        flex-direction: column;
        max-width: 95%;
    }

    .content-side11 {
        padding: 40px;
        text-align: center;
        align-items: center;
    }

    .text-content11 {
        max-width: 100%;
    }

    .title11 {
        font-size: 2.5rem;
    }

    .quote11 {
        font-size: 1.1rem;
    }

    .main-text11 h3 {
        font-size: 1.2rem;
    }

    .main-text11 p {
        font-size: 1rem;
    }

    .red-bg-overlay11 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        width: 100%; 
    }

    .gallery-side {
        padding: 30px 20px;
    }

    .grid-container {
        grid-template-rows: repeat(3, 200px);
    }
}

/* === Single Image Box Instead of Grid === */
.single-img-box {
    width: 100%;
    text-align: center;
}

.single-img-box img {
    width: 100%;
    height: 462px;
    object-fit: contain;   /* show full image */
    border-radius: 10px;
}

/* caption */
.img-caption {
    font-size: 1.3rem;
    margin-top: 10px;
    font-family: "Inter", sans-serif;
    color: #283618ff;
    font-weight: 600;
}



/* Mobile Screens */
@media (max-width: 600px) {

    .about-section11 {
        margin-top: 0px;
        padding: 20px 0;
    }

    .container11 {
        border-radius: 15px;
    }

    .content-side11 {
        padding: 30px 25px;
    }

    .title11 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .quote11 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .main-text11 h3 {
        font-size: 1.1rem;
    }

    .main-text11 p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-note {
        font-size: 0.9rem;
    }

    .red-bg-overlay11 {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    /* Image Grid Stack */
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
        gap: 12px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
}













.capsule-otp {
    display: flex;
    max-width: 600px;
    margin: 20px auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #bc6c25ff;
}

.capsule-otp .otp-input {
    flex: 1;
    padding: 14px 22px;
    font-size: 1rem;
    border: none;
    outline: none;
}

.capsule-otp .otp-btn {
    padding: 0 30px;
    background: #283618ff;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
}





















































/* FOOTER STYLES */
/* Center wrapper */
.footer-wrapper {
  display: flex;
  justify-content: center;
}

/* Main footer box */
.footer {
    width: 90%;
    max-width: 1200px;
    background: #fefae0ff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #283618ff;
    padding: 23px 11px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Sliding track */
.footer-track {
  display: flex;
  width: calc(220px * 10);
  animation: slide 25s linear infinite;
}

/* Logo box */
.footer-logo {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.footer-logo img {
  max-width: 170px;
  height: auto;
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo a:hover img {
  opacity: 0.85;
}


















.asi-footer {
    background-color: #bc6c25ff;  /* background */
    color: #fefae0ff;             /* text color */
    padding: 20px 30px;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.asi-footer-links {
    display: flex;
    flex-wrap: wrap;         /* wrap if screen is small */
    justify-content: center;
    gap: 15px;               /* spacing between links */
    margin-bottom: 10px;
}

.asi-footer-link {
    color: #fefae0ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.asi-footer-link:hover {
    color: #283618ff;  /* optional hover color */
}

.asi-footer-copy {
    font-size: 14px;
    color: #fefae0ff;
    font-weight: 500;
}




/* Center footer links */
.center-links {
    text-align: center;
    width: 100%;
}

/* Copyright center + counter right */
.footer-bottom-row {
    display: flex;
    justify-content: center; /* centers copyright */
    align-items: center;
    width: 100%;
    margin-top: 15px;
    position: relative;
}

/* Counter stays right */
.counter-wrapper {
    position: absolute;
    right: 0;
    text-align: right;
    margin-bottom: 39px;
}

.counter-wrapper a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}


/* Fix footer layout for 1024x600 */
@media (max-width: 1024px) and (max-height: 600px) {
    .footer-bottom-row {
        flex-direction: column; /* stack copyright and counter */
        align-items: center;
    }

    .counter-wrapper {
        position: static;       /* remove absolute positioning */
        margin: 10px 0 0 0;    /* give some spacing */
        text-align: center;     /* center the counter */
    }
}
/* =========================
   Footer Responsive Fix
========================= */

/* Small devices (phones) */
@media (max-width: 480px) {
    .asi-footer-links {
        flex-direction: column;  /* stack links vertically */
        gap: 10px;
    }

    .footer-bottom-row {
        flex-direction: column;  /* stack copyright & counter */
        align-items: center;
    }

    .counter-wrapper {
        position: static;       /* remove absolute */
        margin: 10px 0 0 0;    /* spacing below copyright */
        text-align: center;     /* center the counter */
    }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
    .asi-footer-links {
        flex-wrap: wrap;       /* allow wrapping */
        gap: 12px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .counter-wrapper {
        position: static;
        margin: 12px 0 0 0;
        text-align: center;
    }
}

/* Large tablets / small desktops */
@media (max-width: 1024px) {
    .asi-footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .counter-wrapper {
        position: static;
        margin: 15px 0 0 0;
        text-align: center;
    }
}

/* Optional: very short height screens (like 1024x600) */
@media (max-height: 600px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .counter-wrapper {
        position: static;
        margin: 8px 0 0 0;
        text-align: center;
    }
}












.login-page-container {
    display: flex;
    min-height: 80vh;
    align-items: center;
    
    /* 🔥 SINGLE FULL BACKGROUND IMAGE HERE */
    background-image: url("../assets/img/background1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* --- Left Side --- */
.side-visual {
    flex: 1.2;
    background-color: #fff;
   background-image: 
   url("../assets/img/discimg5.png");

    background-size: cover;                 /* image covers area */
    background-position: center;            /* center image */
    background-repeat: no-repeat;           /* prevent tiling */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    height: 750px; /* reduced from 820px */
    transform: translateY(-35px); /* keep your current nudge */
}




.main-circle {
   width: 450px;
    height: 450px;
    background: #fefae0ff;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    margin-bottom: 40px;
    margin-right: 190px;
    box-shadow: 0 0px 40px -10px #FFC107, 0 0px 80px 0 rgb(255 235 59 / 13%), 0 0px 100px 0 rgb(63 81 181 / 17%);
}

.circle-image {
    width: 80%;
    height: auto;
    object-fit: contain;
}


.circle-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-slider img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease;
}




.floating-features .feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
        font-size: 22px;
    font-weight: bold;
}

.floating-features i {
    font-size: 22px;
}


.accent-text { 
    color: #f9a825; 
    font-size: 28px; 
}

/* Floating Features */
.floating-features {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 72px;
    
    
}

.feature-box {
    background: #f9a825;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;

   box-shadow:
    0 0px 40px -10px rgba(0,0,0,0.35),  
    0 0px 80px  0   rgba(0,0,0,0.12), 
	 	0 0px 100px  0   rgba(0,0,0,0.04);

    transition: 0.3s ease;
}
.feature-box {
    cursor: pointer;
}


/* Optional: small hover lift (shadow still visible without hover) */
.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 26px rgba(0, 0, 0, 0.28),
        0 8px 14px rgba(0, 0, 0, 0.22),
        inset 0 4px 7px rgba(255, 255, 255, 0.5);
}


/* --- Right Side --- */
.side-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    height: 750px;
    background: #00bcd40f;
    transform: translateY(-35px); /* nudge it up */
}



/* 3D Card Look */
.login-wrapper {
   width: 100%;
    max-width: 430px;
    padding: 84px 22px;
    border-radius: 12px;
    box-shadow:
    0 0px 40px -10px rgba(0,0,0,0.35),  
    0 0px 80px  0   rgba(0,0,0,0.12), 
	 	0 0px 100px  0   rgba(0,0,0,0.04);
}

/* Toggle */
.login-toggle {
    display: flex;
    border: 1px solid #f9a825;
    border-radius: 6px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(188, 108, 37, 0.3);
}



/* Inputs & Labels */
.field-container {
    margin-bottom: 20px;
}

.field-container label {
    display: block;
    font-size: 13px;
    color: #bc6c25ff;
    margin-bottom: 5px;
    font-weight: 500;
}

.modern-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #bc6c25ff;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;

    /* 3D effect */
    background: #ffffff;
    box-shadow: 
        0 4px 12px rgba(40, 54, 24, 0.25),
        inset 0 1px 4px rgba(255,255,255,0.6);
    transition: 0.25s ease-in-out;
}

.modern-input:focus {
    outline: none;
    border-color: #f9a825;
    box-shadow: 
        0 5px 15px rgba(188, 108, 37, 0.45),
        inset 0 2px 6px rgba(255,255,255,0.65);
}

/* Forgot link */
.forgot-link {
    text-align: right;
    margin-top: 8px;
}

.forgot-link a {
    font-size: 13px;
    color: #bc6c25ff;
    text-decoration: none;
}

/* 3D Button */
.btn-primary-orange {
    width: 100%;
    padding: 14px;
    background: #bc6c25ff;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s;

    /* 3D depth */
    box-shadow: 
        0 6px 14px rgba(188, 108, 37, 0.4),
        inset 0 2px 3px rgba(255,255,255,0.4);
}

.btn-primary-orange:hover {
    background: #bc6c25ff;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 18px rgba(188, 108, 37, 0.5),
        inset 0 3px 5px rgba(255,255,255,0.5);
}

.signup-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #283618;
}

.signup-footer a {
    color: #bc6c25ff;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .side-visual { display: none; }
}












/* ===== Outer Background Container ===== */
/* ===== Outer Background Container (Reduced Width) ===== */
.reg-background {
    width: 90%;                /* reduced from 100% */
    max-width: 850px;         /* optional cap to prevent it from being too wide on large screens */
    background: #3f51b50a;       /* light background color */
    display: flex;
    justify-content: center;   /* center the form horizontally */
    padding: 15px 20px;        /* vertical spacing around the form */
    box-sizing: border-box;
    margin: 0 auto;            /* center the container on the page */
    transform: translateY(-35px); /* nudge it up */
}


/* ===== Registration Form ===== */
.reg-container {
    width: 100%;               /* full width of max-width */
    max-width: 430px;          /* keeps the form itself compact */
    background: #fefae0ff;
    border-radius: 12px;
    box-shadow: 0 0px 40px -10px rgb(0 0 0 / 24%), 0 0px 80px 0 rgb(0 0 0 / 46%), 0 0px 100px 0 rgb(0 0 0 / 11%);
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reg-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 50px rgba(0,0,0,0.2),
        0 5px 20px rgba(0,0,0,0.12);
}

/* ===== Header ===== */
.reg-header {
    
    color: #283618ff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px 10px 0 0;
    line-height: 1.3;
}

/* ===== Form Body ===== */
.reg-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== Input Fields ===== */
.txtbox {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #283618ff;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.txtbox:focus {
    border-color: #bc6c25ff;
    box-shadow: 0 0 10px rgba(37,117,252,0.2);
}

/* ===== Register Button ===== */
.btn-register {
    background: #bc6c25ff;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-register:hover {
    background: #283618ff;
    transform: scale(1.05);
}

/* ===== Register Link ===== */
.register-link {
    text-align: center;
    font-size: 14px;
    color: #bc6c25ff;
    margin-top: 10px;
}

.register-link a {
    color: #283618ff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-link a:hover {
    text-decoration: underline;
    color: #bc6c25ff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .reg-background {
        padding: 40px 15px;
    }

    .reg-container {
        max-width: 90%;
    }
}


----
（IPMsg Delayed Send: 01/23 18:25 ）
























.about-section {
    width: 100%;
    min-height: auto; /* remove forced 100vh */
    display: flex;
    align-items: flex-start; /* align top to remove extra gap */
    justify-content: center;
    padding: 60px 0; /* top/bottom padding */
    margin-top: 0px; /* already 0 */
}

.container {
    display: flex;
    width: 90%;
    max-width: 1600px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Left Side */
.content-side {
    flex: 1.2;
    padding: 40px; /* reduced from 60px */
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2196f32e;
}

/* Right Side remains same */
.gallery-side {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
     background: #2196f32e;
}
.red-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background: linear-gradient(135deg, #bc6c25ff 0%, #bc6c25ff 100%), 
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png'), #bc6c25ff;
    z-index: -1;
    /* This creates the wave/curve shape */
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.text-content {
    max-width: 500px;
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.2rem;
    border-left: 4px solid #fff;
    padding-left: 15px;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
}

.main-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #ffd700; /* Gold accent */
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-1 { grid-column: 1 / 3; grid-row: 2 / 3; } /* Large middle image */
.item-2 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-3 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-4 { grid-column: 1 / 3; grid-row: 3 / 4; }

/* ===============================
   RESPONSIVE ABOUT SECTION
=============================== */

/* Tablet & Medium Screens */
@media (max-width: 992px) {

    .about-section {
        margin-top: -50px;
        padding: 40px 0;
    }

    .container {
        flex-direction: column;
        max-width: 95%;
    }

    .content-side {
        padding: 40px;
        text-align: center;
        align-items: center;
    }

    .text-content {
        max-width: 100%;
    }

    .title {
        font-size: 2.5rem;
    }

    .quote {
        font-size: 1.1rem;
    }

    .main-text h3 {
        font-size: 1.2rem;
    }

    .main-text p {
        font-size: 1rem;
    }

    .red-bg-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
        width: 100%; 
    }

    .gallery-side {
        padding: 30px 20px;
    }

    .grid-container {
        grid-template-rows: repeat(3, 200px);
    }
}

/* Mobile Screens */
@media (max-width: 600px) {

    .about-section {
        margin-top: 0px;
        padding: 20px 0;
    }

    .container {
        border-radius: 15px;
    }

    .content-side {
        padding: 30px 25px;
    }

    .title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .quote {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .main-text h3 {
        font-size: 1.1rem;
    }

    .main-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-note {
        font-size: 0.9rem;
    }

    .red-bg-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    }

    /* Image Grid Stack */
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
        gap: 12px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
}































/* =============================
   Info Grid Section
============================= */
.info-grid-section {
    display: flex;
    gap: 30px;
    padding: 100px;
    max-width: 1900px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    background: #dda15eff;
}

/* Columns */
.news-column, .spotlight-column { flex: 1; }

/* =============================
   Section Header
============================= */
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
    color: #283618ff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
    font-family: "Inter", sans-serif;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #606c38ff;
}

.section-header p {
    color: #283618ff;
    font-size: 18px;
    margin: 8px 0 25px 0;
    font-family: "Inter", sans-serif;
}
.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* =============================
   News Cards - True 3D Look
============================= */
/* News Cards - True 3D Look */
.news-card {
    display: flex;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 12px;
    gap: 15px;
    background: #fefae0ff;
    border: 1px solid #bc6c25ff;
    box-shadow: 
        6px 6px 12px rgba(0,0,0,0.25),  
        -6px -6px 12px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        8px 8px 16px rgba(0,0,0,0.35),
        -8px -8px 16px rgba(255,255,255,0.9);
}

/* News Logo */
.news-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    box-shadow: 
        3px 3px 6px rgba(0,0,0,0.2),
        -3px -3px 6px rgba(255,255,255,0.7);
}

.news-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News Content */
.news-content {
    flex: 1; /* take remaining space next to logo */
}

/* News Meta */
.news-meta { 
    display: flex; 
    justify-content: space-between; /* first span left, second span right */
    align-items: center;
    width: 100%;  /* full width */
    margin-bottom: 5px;
    font-size: 14px; 
    color: #bc6c25ff;
    font-family: "Inter", sans-serif; 
}

/* Ensure second span always on the right */
.news-meta .news-time {
    margin-left: auto;
}

/* News paragraph */
.news-content p { 
    font-size: 16px; 
    font-weight: 600; 
    margin: 0; 
    line-height: 1.3; 
    color: #283618ff; 
    font-family: "Inter", sans-serif;
}


/* =============================
   Spotlight Box - 3D Look
============================= */
.spotlight-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    min-height: 500px;
    background: #f5f5f5;
    box-shadow: 
        8px 8px 20px rgba(0,0,0,0.2),
        -8px -8px 20px rgba(255,255,255,0.9);
}

/* Feature Red Card 3D */
.feature-red-card {
    flex: 1.1;
    background-color: #bc6c25ff;
    color: #fefae0ff;
    border-radius: 0px;
    box-shadow: 
        inset 4px 4px 15px #606c38ff,    /* inner shadow */
        6px 6px 18px #606c38ff,          /* bottom-right shadow */
        -6px -6px 18px #606c38ff;  
    font-size: 18px;
    font-family: "Inter", sans-serif;

    /* Add line gap */
    line-height: 1.6; /* Adjust value as needed (1.4, 1.5, 1.8) */
    text-align: left;
}

.feature-red-card img { 
    width: 100%; 
    border-bottom: 1px solid white;
}

.feature-inner { 
    padding: 15px;
    border-radius: 4px;
}

/* Scrolling Ticker 3D */
.ticker-list {
    flex: 1;
    background: #fefae0ff;
    overflow: hidden;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 
        inset 3px 3px 8px rgba(0,0,0,0.15),
        inset -3px -3px 8px rgba(255,255,255,0.6);
        border: 1px solid #bc6c25ff;
}



.news-item { padding: 10px 0; }

.news-item h4 {
    font-size: 14px;
    margin: 0;
    color: #283618ff;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.news-item p {
    font-size: 12px;
    margin: 10px 0 0 0;
    color: #bc6c25ff;
    font-family: "Inter", sans-serif;
}



/* ==============================
   Responsive Media Queries
============================== */

/* Medium devices (tablets, 992px and below) */
@media (max-width: 992px) {
    .info-grid-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .news-column, .spotlight-column {
        flex: 1 1 100%;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .news-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        gap: 10px;
    }

    .news-logo {
        width: 25px;
        height: 25px;
    }

    .news-meta {
        font-size: 10px;
    }

    .news-content p {
        font-size: 13px;
    }

    .spotlight-box {
        flex-direction: column;
        min-height: auto;
    }

    .feature-red-card {
        width: 100%;
    }

    .feature-inner {
        padding: 10px;
    }

    .ticker-list {
        min-height: auto;
        padding: 8px;
    }

    .news-item h4 {
        font-size: 10px;
    }

    .news-item p {
        font-size: 11px;
    }

    
}

/* Small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .info-grid-section {
        padding: 20px 10px;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .section-header p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .news-card {
        padding: 8px;
        gap: 8px;
    }

    .news-logo {
        width: 22px;
        height: 22px;
    }

    .news-meta {
        font-size: 9px;
    }

    .news-content p {
        font-size: 12px;
    }

    .spotlight-box {
        flex-direction: column;
    }

    .feature-red-card img {
        width: 100%;
        height: auto;
    }

    .feature-inner {
        padding: 8px;
    }

    .ticker-list {
        padding: 5px;
    }

    .news-item h4 {
        font-size: 9px;
    }

    .news-item p {
        font-size: 10px;
    }

    
}




































/* ===============================
   ABOUT SECTION
=============================== */
.about-section {
    width: 100%;
    min-height: auto; /* removed forced 100vh */
    display: flex;
    align-items: flex-start; /* top-aligned */
    justify-content: center;
    padding: 100px 0;
    margin-top: 0;
    position: relative;
}

/* Container */
.container {
    display: flex;
    width: 90%;
    max-width: 1600px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* Left Side */
.content-side {
    flex: 1.2;
    padding: 40px;
    position: relative;
    z-index: 2;
    color: #fefae0ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2196f32e;
}

/* Right Side */
.gallery-side {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2196f32e;
}

/* Background Overlay */
.red-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background: linear-gradient(135deg, #283618ff 0%, #283618ff 100%),
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png'),
                #bc6c25ff;
    z-index: -1;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    will-change: transform; /* hint GPU for smooth rendering */
}

/* Text Content */
.text-content {
    max-width: 500px;
}

.title {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #fefae0ff;
}

.quote {
    font-size: 1.2rem;
    border-left: 4px solid #fefae0ff;
    padding-left: 15px;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}

.main-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #fefae0ff;
}

.main-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: "Inter", sans-serif;
    color: #fefae0ff;
}

.footer-note {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #dda15eff;
    font-family: "Inter", sans-serif;
}

/* Grid Gallery */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    will-change: transform; /* smoother hover */
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-1 { grid-column: 1 / 3; grid-row: 2 / 3; } /* Large middle image */
.item-2 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-3 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-4 { grid-column: 1 / 3; grid-row: 3 / 4; }

/* ===============================
   RESPONSIVE
=============================== */

/* Tablet / Medium Screens */
@media (max-width: 992px) {
    .about-section {
        margin-top: -50px;
        padding: 40px 0;
    }

    .container {
        flex-direction: column;
        max-width: 95%;
    }

    .content-side {
        padding: 40px;
        text-align: center;
        align-items: center;
    }

    .text-content { max-width: 100%; }
    .title { font-size: 2.5rem; }
    .quote { font-size: 1.1rem; }
    .main-text h3 { font-size: 1.2rem; }
    .main-text p { font-size: 1rem; }

    /* Overlay clip simplified */
    .red-bg-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        width: 100%;
    }

    .gallery-side { padding: 30px 20px; }

    .grid-container { grid-template-rows: repeat(3, 200px); }
}

/* Mobile Screens */
@media (max-width: 600px) {
    .about-section { margin-top: 0px; padding: 20px 0; }
    .container { border-radius: 15px; }
    .content-side { padding: 30px 25px; }
    .title { font-size: 2rem; letter-spacing: 1px; }
    .quote { font-size: 1rem; margin-bottom: 20px; }
    .main-text h3 { font-size: 1.1rem; }
    .main-text p { font-size: 0.95rem; line-height: 1.5; }
    .footer-note { font-size: 0.9rem; }

    /* Overlay simplified for mobile */
    .red-bg-overlay { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

    /* Image Grid stack */
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
        gap: 12px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
}

















/* ==============================
   HERO SECTION / ONE-CONTAINER
============================== */
.one-container {
    display: flex;
    height: 400px;
    width: 1400px;       /* Fixed width for desktop */
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/* Slight overlap for next section */
.one-container::after {
    content: '';
    display: block;
    height: 80px;
}

.banner-left {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffeb3b40;
}

.banner-right {
    flex: 1;
    position: relative;
    background: #ccc;
}

.one-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.image-caption {
    position: absolute;
    bottom: 2px;
    left: 20px;
    padding: 8px 15px;
    background: #283618ff;
    color: #fff;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.image-caption a {
    color: #fff;
    text-decoration: none;
}

.image-caption a:hover {
    text-decoration: underline;
}



/* ==============================
   LOGO GROUP
============================== */
.logo-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 0;
}

.logo-group img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-group img:hover {
    transform: scale(1.05);
}

/* ==============================
   TYPOGRAPHY
============================== */
.main-title h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #bc6c25ff;
    line-height: 2.2rem;
}

.year-text {
    font-size: 3rem !important;
    margin-top: 25px !important;
}

.sub-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 15px;
    color: #283618ff;
}

.sub-heading .sub-link {
    color: inherit;
    text-decoration: none;
}

.sub-heading .sub-link:hover {
    text-decoration: underline;
}

.india-url {
    color: #000;
    font-size: 1.2rem;
}

/* ==============================
   SPOTLIGHT TAG & CONTROLS
============================== */
.spotlight-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange-accent);
    color: #fff;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--orange-accent);
}

.nav-arrow.prev { left: -17px; box-shadow: 2px 0 5px rgba(0,0,0,0.1); }
.nav-arrow.next { right: 20px; }

.pause-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
}

/* ==============================
   SLIDER DASHES
============================== */
.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 30px;
    display: flex;
    gap: 8px;
}

.dash {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.dash.active {
    background: var(--orange-accent);
    width: 35px;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-images img.active {
    opacity: 1;
}

/* ==============================
   BLUE SECTION
============================== */
.blue-section {
    background: #bc6c25ff;
    color: #fff;
    padding: 115px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    z-index: 0;
}

.bluesection-title {
    color: #fff;
    margin-top: 40px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

/* Underline */
.underline-accent {
    width: 70px;
    height: 4px;
    background: var(--orange-accent);
    margin: 10px auto 40px;
}

/* ==============================
   SUBSCRIPTION BOX
============================== */
.subscription-box {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    padding: 5px;
}

.subscription-box input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    outline: none;
}

.subs-btn {
    background: #bc6c25ff;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 0 25px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
}

.subscription-note {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.85;
}

/* Target screens around 1024px width and 600px height */
@media screen and (max-width: 1024px) and (max-height: 600px) {
    .main-title h1 {
        font-size: 1.0rem;  /* Reduced font size */
    }
}


/* ==============================
   RESPONSIVE MEDIA QUERIES
============================== */

/* Medium devices / Tablets */
@media (max-width: 992px) {
    .one-container {
        flex-direction: column;
        width: 95%;
        height: auto;
        padding: 20px 0;
    }

    .banner-left,
    .banner-right {
        flex: 1 1 100%;
        padding: 30px;
    }

    .main-title h1 { font-size: 1.3rem; }
    .year-text { font-size: 2.2rem !important; }
    .sub-heading { font-size: 1.3rem; }
    .india-url { font-size: 1rem; }

    .nav-arrow.prev { left: 5px; }
    .nav-arrow.next { right: 5px; }

    .pause-btn { width: 25px; height: 25px; bottom: 15px; right: 15px; }
    .dash { width: 20px; height: 3px; }
    .dash.active { width: 28px; }

    .blue-section { padding: 80px 15px; margin-top: -80px; }
    .bluesection-title { font-size: 1.8rem; }

    .subscription-box { flex-direction: column; padding: 10px; }
    .subscription-box input { padding: 12px 15px; font-size: 1rem; margin-bottom: 10px; }
    .subs-btn { font-size: 0.95rem; padding: 10px 0; }
    .subscription-note { font-size: 1rem; margin-top: 15px; }
}

/* Small devices / Phones */
@media (max-width: 576px) {
    .main-title h1 { font-size: 1.1rem; }
    .year-text { font-size: 1.8rem !important; }
    .sub-heading { font-size: 1.1rem; }
    .india-url { font-size: 0.95rem; }

    .nav-arrow { width: 25px; height: 25px; }
    .pause-btn { width: 20px; height: 20px; }
    .dash { width: 15px; }
    .dash.active { width: 22px; }

    .blue-section { padding: 60px 10px; margin-top: -60px; }
    .bluesection-title { font-size: 1.5rem; }

    .subscription-box { max-width: 100%; }
    .subscription-box input { font-size: 0.95rem; padding: 10px; }
    .subs-btn { font-size: 0.9rem; padding: 8px 0; }
    .subscription-note { font-size: 0.9rem; }
}

/* Extra Large Desktop Fix */
@media (max-width: 1400px) {
    .one-container { width: 100%; }
}







































/* ===========================
      FEATURE SECTION
=========================== */
.feature-wrapper {
    padding: 60px 20px;
    background: #f4f7fc;
    font-family: "Inter", sans-serif;
}

.feature-container {
    max-width: 1300px;
    margin: 0 auto;
}

.feature-main-heading {
    text-align: center;
    margin-bottom: 40px;
}

.feature-main-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #283618ff ;
    margin: 0;
    font-family: "Inter", sans-serif;
}


.feature-row {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #fefae0ff;
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-left: 6px solid transparent;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-left: 6px solid #bc6c25ff;
}

/* ICON CIRCLES */
.feature-icon-box {
    width: 102px;
    height: 58px;
    background: #bc6c25ff;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

/* Colored icon backgrounds */
.color-blue { background: #2196f3; }
.color-green { background: #4caf50; }
.color-purple { background: #9c27b0; }
.color-red { background: #f44336; }
.color-orange { background: #ff5722; }

/* TEXT PART */
.feature-text h3 {
    margin: 0;
    font-size: 20px;
    color: #283618ff;
    font-weight: 700;
}

.feature-text p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}

/* ==============================
   Feature Section Responsive
============================== */

/* Medium devices (tablets, 992px and below) */
@media (max-width: 992px) {
    .feature-wrapper {
        padding: 50px 15px;
    }

    .feature-main-heading h2 {
        font-size: 28px;
    }

    .feature-row {
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon-box {
        width: 85px;
        height: 50px;
        font-size: 24px;
        margin-right: 15px;
    }

    .feature-text h3 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }
}

/* Small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .feature-wrapper {
        padding: 40px 10px;
    }

    .feature-main-heading h2 {
        font-size: 24px;
    }

    .feature-row {
        flex-direction: column;
        gap: 18px;
    }

    .feature-card {
        flex-direction: row;
        padding: 15px;
    }

    .feature-icon-box {
        width: 70px;
        height: 45px;
        font-size: 20px;
        margin-right: 12px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

















/* FOOTER STYLES */
.site-footer {
    background: #bc6c25ff;
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff9800;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ff9800;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #bc6c25ff;
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff9800;
    color: #1a1a1a;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-form input,
.footer-form textarea {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.footer-form button {
    background: #ff9800;
    color: #1a1a1a;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: #e68900;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}















*/ about us*/


/* Section Background */
.link-section {
    background-color: #f2f2f2;
    height: 150px;
    display: flex;
    align-items: center;
}

/* Link container */
.link-container {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #bc6c25ff;
}

/* Links */
.link-container a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

/* Slash style */
.link-container span {
    font-size: 18px;
    color: #333;
}

/* Hover */
.link-container a:hover {
    color: #fefae0ff;
}
















*/epigraphy/*


/* SCSS HEX COLORS */
:root {
    --olive-leaf: #606c38ff;
    --black-forest: #283618ff;
    --cornsilk: #fefae0ff;
    --sunlit-clay: #dda15eff;
    --copperwood: #bc6c25ff;
}

/* Global */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--cornsilk);
    color: var(--black-forest);
}

/* Header */
.main-header {
    background-color:#fefae0ff;
    color: var(--cornsilk);
    text-align: center;
    padding: 60px 20px;
}

.main-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #606c38ff;
}

.slogan {
    font-size: 18px;
    color: var(--sunlit-clay);
    font-style: italic;
}

/* Section */
.gallery-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-section h2 {
    font-size: 26px;
    color: var(--olive-leaf);
    border-left: 6px solid var(--copperwood);
    padding-left: 15px;
}

.gallery-text {
    margin: 15px 0 40px;
}

/* Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Images */
.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    background: white;
    padding: 8px;
    border: 4px solid var(--olive-leaf);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    border-color: var(--sunlit-clay);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(40, 54, 24, 0.95);
    align-items: center;
    justify-content: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 85%;
    border: 6px solid var(--sunlit-clay);
    background: white;
    padding: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--cornsilk);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .main-header h1 {
        font-size: 28px;
    }
}











/* SEARCH BOX DIV */
.search-box-div {
    width: 100%;
    padding: 0 54px;
    margin-top: 60px;
    margin-bottom: 20px;
}

/* SEARCH BUTTON DIV */
.search-button-div {
    width: 100%;
    padding: 0 54px;
    margin-bottom: 32px;
}

/* INPUT FIELD */
.input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 6px;
    border: 1px solid #bcc3cc;
    background: #fff;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
                inset -2px -2px 5px rgba(255,255,255,0.7);
    transition: .3s;
    font-size: 20px;
}

/* BUTTON */
.button {
    width: 100%;
    padding: 12px 20px;
    background: #bc6c25ff !important;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2),
                -2px -2px 6px rgba(255,255,255,0.4);
    transition: .3s;
}

/* HOVER */
.button:hover {
    box-shadow: inset 2px 2px 6px rgba(0,0,0,0.25),
                inset -2px -2px 6px rgba(255,255,255,0.3);
}


/* ================================
   MEDIA QUERIES – RESPONSIVE FIX
   ================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .search-box-div,
    .search-button-div {
        padding: 0 40px;
        margin-top: 40px;
    }

    .input {
        padding: 12px 18px;
    }

    .button {
        padding: 12px 18px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .search-box-div,
    .search-button-div {
        padding: 0 25px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .button {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .search-box-div,
    .search-button-div {
        padding: 0 15px;
        margin-top: 25px;
        margin-bottom: 18px;
    }

    .input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .button {
        padding: 10px 14px;
        font-size: 14px;
    }
}











/* MAIN WRAPPER */
.search-block {
    width: 100%;
    padding: 0 54px;
    margin: 12px 0;
    box-sizing: border-box;
}

/* SEARCH INPUT */
.search-input {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
                inset -2px -2px 5px rgba(255,255,255,0.7);
                
}

/* SEARCH BUTTON */
.search-button {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    background: #bc6c25 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2),
                -2px -2px 6px rgba(255,255,255,0.4);
    transition: .3s;
}

/* HOVER */
.search-button:hover {
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.25),
                inset -2px -2px 5px rgba(255,255,255,0.3);
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .search-block {
        padding: 0 40px;
    }

    .search-input,
    .search-button {
        height: 46px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .search-block {
        padding: 0 30px;
    }

    .search-input,
    .search-button {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-block {
        padding: 0 20px;
    }

    .search-input,
    .search-button {
        height: 42px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .search-block {
        padding: 0 15px;
    }

    .search-input,
    .search-button {
        height: 40px;
        font-size: 12px;
    }
}









/* Center button vertically & horizontally */
.meta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;     /* pushes it to center of page */
    width: 100%;
}


/* 3D Button Style */
.meta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(145deg, #606c38, #55632d);
    border-radius: 12px;
    border: none;
    text-decoration: none;
    box-shadow: 0 6px #3f4721, 0 10px 20px rgba(0,0,0,0.2); /* 3D shadow */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.meta-button:hover {
    background: linear-gradient(145deg, #bc6c25, #d88a4d);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px #3f4721, 0 14px 30px rgba(0,0,0,0.25);
}

/* Icon Style */
.meta-button i {
    font-size: 18px;
}

/* Optional: active/click effect */
.meta-button:active {
    transform: translateY(2px);
    box-shadow: 0 4px #3f4721, 0 8px 15px rgba(0,0,0,0.2);
}


/* ================================
   MEDIA QUERIES – RESPONSIVE
   ================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {

    .meta-button {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 10px;
    }

    .meta-button i {
        font-size: 16px;
    }

    .meta-button-container {
        height: 9vh;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .meta-button {
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .meta-button i {
        font-size: 16px;
    }

    .meta-button-container {
        height: 8vh;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    .meta-button {
        padding: 8px 18px;
        font-size: 13px;
        border-radius: 8px;
        gap: 6px;
    }

    .meta-button i {
        font-size: 14px;
    }

    .meta-button-container {
        height: auto;       /* safer for very small screens */
        padding-top: 10px;
        padding-bottom: 10px;
    }
}









/* FILTER WRAPPER */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 25px auto 35px;
  padding: 0 54px;
  background: #f7f9fc;
  border-radius: 14px;
  padding-top: 30px;
  padding-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e9f0;
}

/* FORM GROUP */
.filter-grid .form-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* LABELS */
.filter-grid .form-group label {
    color: #2d3a4a;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 6px;
    font-family: "Inter", sans-serif;
}

/* COMMON SELECT BOXES */
.filter-grid select {
  width: 100%;
  height: 46px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfd6e3;
  background: #fefae0;
  font-size: 15px;
  transition: 0.3s;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.filter-grid select:hover {
  border-color: #3b82f6;
}

.filter-grid select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
  outline: none;
}

/* CUSTOM MULTI SELECT LANGUAGE */
.ddlContainer {
    position: relative;
    width: 100%;
}

.ddlHeader {
   width: 100%;
   height: 46px;
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #cfd6e3;
   background: #fefae0;
   font-size: 15px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
   box-shadow: 0 3px 6px rgba(0,0,0,0.08);
   transition: 0.2s ease;
}

.ddlHeader:hover {
   border-color: #3b82f6;
}

.ddlList {
    display: none;
    position: absolute;
    top: 48px;
    border: 1px solid #cfd6e3;
    background: #ffffff;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

/* Scrollbar */
.ddlList::-webkit-scrollbar {
  width: 6px;
}
.ddlList::-webkit-scrollbar-thumb {
  background: #b4bccc;
  border-radius: 10px;
}


/* -------- RESPONSIVE -------- */

@media (max-width: 1024px) {
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .filter-grid {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .filter-grid {
    padding: 15px;
    gap: 10px;
  }
  .filter-grid select {
    font-size: 14px;
  }
}










/* TABLE WRAPPER */
.table-section1 {
    width: 100%;
    overflow-x: auto;
}

/* MAIN GRIDVIEW TABLE */
.grid-table1 {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* HEADER */
/* HEADER */
.grid-table1 th {
    background: #bc6c25ff;
    color: #ffffff !important;   /* FORCE PURE WHITE */
    padding: 12px 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}


/* ROWS */
.grid-table1 td {
    padding: 12px 10px;
    color: #1a1a1a;
    border-bottom: 1px solid #e6e6e6;
}

/* ALTERNATE ROW */
.alt1 td {
    background: #f7f9fc;
}

/* HOVER */
.grid-table1 tr:hover td {
    background: #eef4ff;
    transition: 0.2s ease;
}
/* FIX: Make header <a> text white */
.grid-table1 th a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Optional: hover lighter white */
.grid-table1 th a:hover {
    color: #f2f2f2 !important;
}
/* ------------------------------------------ */
/* 1440 × 900 VIEW                            */
/* ------------------------------------------ */
@media (max-width: 1440px) {
    .page-container1 {
        max-width: 1300px;   /* Reduced */
        min-width: 1000px;
    }
}


/* ------------------------------------------ */
/* 1024 × 600 VIEW                            */
/* ------------------------------------------ */
@media (max-width: 1024px) {
    .page-container1 {
        max-width: 900px;    /* Reduced */
        min-width: 750px;
    }
}


/* ------------------------------------------ */
/* 414 × 876 VIEW (Mobile)                    */
/* ------------------------------------------ */
@media (max-width: 414px) {
    .page-container1 {
        max-width: 380px;    /* Your required reduced size */
        min-width: auto;
        padding: 15px;       /* Mobile friendly */
        margin: 20px auto;
    }
}

@media (max-width: 768px) {

    /* Page container full width on mobile */
    .page-container1 {
        min-width: 100%;
        max-width: 100%;
        margin: 0px;
        padding: 0px;
    }

    /* Allow table to scroll properly */
    .table-section1 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Table becomes wider for scroll */
    .grid-table1 {
        min-width: 700px;
        font-size: 13px;
    }

    .grid-table1 th,
    .grid-table1 td {
        padding: 10px;
        font-size: 13px;
    }
}



/* STATUS COLORS (like your Pending - red) */
.status-pending {
    color: #c41818;
    font-weight: 600;
}
.status-approved {
    color: #008f39;
    font-weight: 600;
}
.status-rejected {
    color: #d00000;
    font-weight: 600;
}

/* PAGINATION WRAPPER */
.pager1 {
    padding: 18px 0;
    text-align: left !important;
    font-family: 'Segoe UI', sans-serif;
}







.ar-split{
    background:#fff;
    padding:25px;
    border-radius:8px;
    border:1px solid #ddd;
}

.ar-split-title{
    font-size:24px;
    color:#606c38ff;
    margin-bottom:15px;
}

.split-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.split-box{
    flex:1;
    padding:15px;
    border:1px solid #d7d7d7;
    border-radius:6px;
    background:#f9fbff;
}

.split-box.full{
    margin-bottom:20px;
}

.split-box h3{
    margin-top:0;
    font-size:18px;
    color:#606c38ff;
    border-bottom:1px solid #bcd;
    padding-bottom:4px;
}

.split-box p{
    margin:6px 0;
    font-size:15px;
}

.long{
    line-height:1.5;
}




/*THUMBNAILS*/

/* ===========================
   THUMBNAILS
=========================== */
.image-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: left;
    flex-wrap: wrap;
}

.ar-image {
    width: 80px;
    height: 100px;
    border-radius: 6px;
    border: 1px solid #ccc;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
    pointer-events: auto; /* make clickable */
}

.ar-image:hover {
    transform: scale(1.1);
}

/* ===========================
   POPUP OVERLAY
=========================== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999999 !important;
    text-align: center;
    line-height: 10vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* ===========================
   POPUP IMAGE
=========================== */
.popup-img {
    width: auto !important;       /* use original width */
    height: auto !important;      /* use original height */
    max-width: 95%;               /* scale down if bigger than viewport */
    max-height: 90%;              /* scale down if taller than viewport */
    object-fit: contain !important;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
    margin-top: 0;                /* remove fixed margin */
    transition: transform 0.3s ease;
    max-width: 80%;
    max-height: 80%;
}

/* ===========================
   CLOSE BUTTON
=========================== */
.close-btn1 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}











/* MAIN BOX */
.threeD-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding-top: 10px;
}

/* TITLE 3D */
.threeD-title {
    font-size: 28px;
    font-weight: bold;
    color: #bc6c25ff;
    text-shadow: 1px 1px 2px #00000022;
    margin-bottom: 25px;
}

/* FORM OUTER BOX */
.clean-form-box {
    width: 100%;
    margin: 27px auto;
}

/* UPDATED ROW FLEX - This centers the inputs */
.clean-row {
    display: flex;
    align-items: center;      
    justify-content: center;  /* CHANGED: This centers the form row */
    gap: 20px;                
    flex-wrap: wrap;          /* Added for better wrapping on smaller screens */
}

/* FIELD BLOCK */
.clean-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
}

.clean-field label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

/* INPUT + SELECT NEW STYLE */
.clean-field select,
.clean-field input {
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    background: #f7f9ff;
    transition: 0.2s;
    box-shadow: inset 2px 2px 6px #d9d9d9, inset -2px -2px 6px #ffffff;
}

.clean-field select:focus,
.clean-field input:focus {
    border-color: #4a6cf7;
    background: #ffffff;
}

/* ADD BUTTON */
.clean-center {
    text-align: center;
    margin-top: 20px;
}

.clean-btn {
    padding: 10px 25px;
    background: linear-gradient(145deg, #4a6cf7, #324ed3);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.clean-btn:hover {
    transform: translateY(-2px);
}

/* Make label + input in one line */
.clean-field.horizontal {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.clean-field.horizontal label {
    margin-bottom: 0;
    min-width: 60px;
}

.clean-field.horizontal select,
.clean-field.horizontal input {
    height: 42px;
    width: 240px;
    box-sizing: border-box;
}

/* TABLE WRAPPER */
.threeD-table-wrap {
    display: flex;
    justify-content: center;
}



























/* 15/01/2025 */

/* ==================================================
   EPIGRAPHY SECTION — HERITAGE PANEL DESIGN (5 colors only)
==================================================*/

.epigraphy-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #fefae0ff; /* Cornsilk */
  border-radius: 16px;
  border: 4px solid #283618ff; /* Black Forest */
  box-shadow: 0 10px 40px rgba(40,54,24,0.25);
  font-family: "Inter", sans-serif;
}

/* ---------- Title ---------- */
.epigraphy-title {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 3px solid #bc6c25ff; /* Copperwood */
}

.epigraphy-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #283618ff;
  text-transform: uppercase;
}

.epigraphy-title p {
  font-size: 1.2rem;
  margin-top: 8px;
  font-weight: 500;
  color: #606c38ff;
}

/* ---------- Overview Block ---------- */
.epigraphy-overview {
  margin-top: 40px;
  padding: 25px 30px;
  background: rgba(221,161,94,0.15); /* Sunlit Clay soft */
  border-left: 10px solid #dda15eff;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #283618ff;
  box-shadow: 0 3px 18px rgba(40,54,24,0.18);
}

/* ---------- Subtitles ---------- */
.epigraphy-subtitle {
  font-size: 2rem;
  margin-top: 55px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #bc6c25ff;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 3px solid #606c38ff;
  width: fit-content;
}

/* ---------- List ---------- */
.epigraphy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.epigraphy-list li {
  background: rgba(96,108,56,0.12);
  color: #283618ff;
  padding: 14px 20px;
  margin: 12px 0;
  border-left: 8px solid #bc6c25ff;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(40,54,24,0.1);
  transition: 0.3s ease;
}

.epigraphy-list li:hover {
  background: rgba(221,161,94,0.3);
  transform: translateX(8px);
}

/* ---------- Language Grid ---------- */
.language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

/* Language Cards */
.language-card {
  background: #fefae0ff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 3px solid #606c38ff; /* Olive Leaf */
  box-shadow: 0 8px 25px rgba(40,54,24,0.22);
  transition: 0.35s ease-in-out;
}

.language-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #dda15eff; /* Sunlit Clay */
  box-shadow: 0 12px 35px rgba(40,54,24,0.3);
}

.language-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #bc6c25ff;
}

.language-card h4 {
  margin-top: 14px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #283618ff;
  letter-spacing: 0.5px;
}

/* ---------- Highlight Quote ----------- */
.highlight-quote {
  margin-top: 70px;
  padding: 35px 25px;
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  background: rgba(96,108,56,0.18);
  border-left: 10px solid #283618ff;
  border-right: 10px solid #283618ff;
  border-radius: 12px;
  color: #283618ff;
  box-shadow: 0 8px 25px rgba(40,54,24,0.2);
}

/* ---------- Lightbox ---------- */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(40,54,24,0.92);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
  border: 4px solid #fefae0ff;
}

.close-btn {
  position: fixed;
  top: 35px;
  right: 50px;
  font-size: 48px;
  cursor: pointer;
  color: #fefae0ff;
}

  
  
  
  
  
/* SCSS HEX */
$olive-leaf: #606c38ff;
$black-forest: #283618ff;
$cornsilk: #fefae0ff;
$sunlit-clay: #dda15eff;
$copperwood: #bc6c25ff;

/* ==============================
   Inscription Documentation Section
================================= */

.inscription-section {
    background-color: $cornsilk;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.inscription-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.inscription-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: $olive-leaf;
    margin-bottom: 10px;
    animation: fadeDown 1s ease forwards;
}

/* Slogan */
.inscription-slogan {
    font-size: 1.2rem;
    color: $copperwood;
    font-weight: 600;
    margin-bottom: 35px;
    animation: fadeUp 1s ease forwards;
}

/* Image */
.inscription-image {
    margin-bottom: 45px;
    animation: zoomIn 1.2s ease forwards;
}

.inscription-image img {
    width: 100%;
    max-width: 850px;
    border-radius: 16px;
    border: 6px solid $olive-leaf;
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

/* ==============================
   Steps Layout
================================= */

.inscription-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    justify-content: center;
    margin-top: 10px;
}

/* Step Card */
.step {
    background-color: #ffffff;
    color: $black-forest;
    padding: 22px 20px;
    border-left: 6px solid $sunlit-clay;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeUp 1.2s ease forwards;
}

/* Hover Effect */
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
    border-left-color: $copperwood;
}

/* Center last two steps */
.inscription-steps .step:nth-child(4) {
    grid-column: 1 / 2;
}

.inscription-steps .step:nth-child(5) {
    grid-column: 2 / 3;
}

/* ==============================
   Animations
================================= */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==============================
   Responsive
================================= */

/* Tablet */
@media (max-width: 900px) {
    .inscription-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .inscription-steps .step:nth-child(4),
    .inscription-steps .step:nth-child(5) {
        grid-column: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .inscription-title {
        font-size: 2rem;
    }

    .inscription-steps {
        grid-template-columns: 1fr;
    }
}
















/* SCSS HEX as CSS variables for convenience */
:root {
    --olive-leaf: #606c38ff;
    --black-forest: #283618ff;
    --cornsilk: #fefae0ff;
    --sunlit-clay: #dda15eff;
    --copperwood: #bc6c25ff;
}

/* ==========================
   Section Base
========================== */

/* SCSS HEX as CSS variables for convenience */

/* ==========================
   Section Base
========================== */
.classification-section {
    background-color: var(--cornsilk);
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.classification-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.classification-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--olive-leaf);
    margin-bottom: 12px;
}

.classification-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: var(--black-forest);
    line-height: 1.7;
}

/* ==========================
   Layout
========================== */
.classification-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

/* ==========================
   Left Image (Slider)
========================== */
.classification-image-wrapper {
    position: relative;
}

/* Slider image */
#sliderImage {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    border: 6px solid var(--olive-leaf);
    box-shadow: 0 18px 36px rgba(0,0,0,0.25);
    transition: opacity 0.6s ease-in-out;
}

/* Image loop decoration */
.image-loop {
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 6px solid var(--sunlit-clay);
    background-color: var(--cornsilk);
    z-index: 2;
}

/* ==========================
   Cards Grid (3 per row)
========================== */
.classification-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ==========================
   Card With Visible Border
========================== */
.classification-card {
    background-color: #ffffff;
    padding: 22px 20px;
    border-radius: 10px;
    border: 3px solid var(--sunlit-clay); /* Always visible border */
    font-size: 1.05rem;
    color: var(--black-forest);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Icon */
.classification-card .icon {
    font-size: 1.5rem;
    color: var(--olive-leaf);
}

/* Hover Effect */
.classification-card:hover {
    border-color: var(--copperwood);
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

/* ==========================
   Responsive
========================== */
@media (max-width: 1100px) {
    .classification-layout {
        grid-template-columns: 1fr;
    }

    #sliderImage {
        height: 420px;
    }
}

@media (max-width: 900px) {
    .classification-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .classification-cards {
        grid-template-columns: 1fr;
    }

    .classification-title {
        font-size: 2.1rem;
    }
}








/* FULL BACKGROUND WRAPPER */
.estampage-bg-wrapper {
  width: 100%;
  padding: 80px 0;
  background: #fefae0ff; /* Cornsilk */
  border-top: 8px solid #606c38ff; /* Olive Leaf */
  border-bottom: 8px solid #bc6c25ff; /* Copperwood */
}

/* Original Section */
.estampage-section {
    max-width: 1309px;
    margin: 0px auto;
    padding: 75px 36px;
    font-family: "Inter", sans-serif;
    background: #ffc10747;
     box-shadow: 0 15px 40px rgba(40,54,24,0.2); /* Black Forest shadow */
      border-radius: 20px;
}

/* Header Tag */
.estampage-header-tag {
  display: inline-block;
  background: #606c38ff;
  color: #fefae0ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Title */
.estampage-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #283618ff;
  margin-bottom: 10px;
}

.estampage-title p {
  font-size: 1.15rem;
  font-style: italic;
  color: #bc6c25ff;
}

/* Overview */
.estampage-overview {
  margin-top: 40px;
  padding: 30px;
  line-height: 1.8;
  color: #283618ff;
  background: rgba(221,161,94,0.18);
  border-radius: 14px;
  border-left: 10px solid #bc6c25ff;
  font-size: 1.07rem;
  box-shadow: 0 10px 30px rgba(40,54,24,0.15);
}

/* Subtitle */
.estampage-subtitle {
  margin-top: 55px;
  font-size: 1.9rem;
  font-weight: 600;
  color: #283618ff;
 
  display: inline-block;
  padding-bottom: 6px;
}

/* Features */
.estampage-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-box {
  padding: 18px 20px;
  background: #fefae0ff;
  border-radius: 12px;
  border-top: 6px solid #bc6c25ff;
  box-shadow: 0 8px 25px rgba(40,54,24,0.12);
  font-size: 1.05rem;
  color: #283618ff;
  transition: .3s;
}

.feature-box:hover {
  transform: scale(1.03);
  background: rgba(96,108,56,0.12);
}

/* Video */
.estampage-video-card {
  margin: 60px auto;
  background: #fefae0ff;
  padding: 25px;
  border-radius: 14px;
  border: 2px solid #606c38ff;
  text-align: center;
  box-shadow: 0 12px 35px rgba(40,54,24,0.18);
}

.estampage-video-card iframe {
  width: 100%;
  max-width: 800px;
  height: 420px;
  border-radius: 12px;
  border: 3px solid #bc6c25ff;
}

/* Did You Know */
.did-you-know {
  margin-top: 40px;
  padding: 30px;
  background: rgba(96,108,56,0.12);
  border-left: 10px solid #606c38ff;
  border-radius: 14px;
  font-size: 1.1rem;
  color: #283618ff;
  box-shadow: 0 8px 25px rgba(40,54,24,0.14);
}

.did-you-know strong {
  color: #bc6c25ff;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}









.press-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #2b2b2b;
  }

  .press-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .press-title h2 {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .press-title p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
  }

  .press-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .press-card {
    background: #f7f9fc;
    border-left: 5px solid #bc6c25ff;
    padding: 18px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .press-source {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .press-card a {
    text-decoration: none;
    color: #bc6c25ff;
    font-size: 1.05rem;
    font-weight: 600;
  }

  .press-card a:hover {
    text-decoration: underline;
  }

  .press-note {
    margin-top: 50px;
    padding: 22px;
    background: #eef2f7;
    border-left: 5px solid #bc6c25ff;
    font-size: 1.05rem;
    color: #333;
  }

  .press-note strong {
    display: block;
    margin-bottom: 6px;
    color: #bc6c25ff;
    font-size: 1.1rem;
  }
  
  .exhibition-doc {
    font-family: "Poppins", Arial, sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    line-height: 1.7;
    color: #333;
}

 .exhibition-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #2b2b2b;
  }

  .exhibition-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .exhibition-title h2 {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .exhibition-title p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
  }

  .exhibition-overview {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
  }

  .exhibition-subtitle {
    font-size: 1.6rem;
    margin: 45px 0 20px;
    color: #bc6c25ff;
  }

  .format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
  }

  .format-card {
    background: #f7f9fc;
    padding: 18px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .format-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #bc6c25ff;
  }

  .format-card p {
    font-size: 0.95rem;
    color: #555;
  }

  .experience-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
  }

  .experience-list li {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .recent-exhibitions {
    margin-top: 35px;
    padding: 22px;
    background: #eef2f7;
    border-left: 5px solid #bc6c25ff;
  }

  .recent-exhibitions strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #bc6c25ff;
  }

  .recent-exhibitions ul {
    margin: 0;
    padding-left: 18px;
  }

  .recent-exhibitions li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
  }

  .exhibition-quote {
    margin-top: 50px;
    padding: 25px;
    background: #f4f6fa;
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    border-radius: 6px;
  }


.gallery-section {
    margin-top: 50px;
  }

  .gallery-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #bc6c25ff;
    text-align: center;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .gallery-item {
    background: #f7f9fc;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .gallery-caption {
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #444;
    text-align: center;
    background: #ffffff;
  }







/* ======================================================
   INSCRIPTIONS SECTION — Dynamic Panel Design
   5-Color Theme Only (Black Forest, Olive Leaf, Cornsilk, Sunlit Clay, Copperwood)
====================================================== */

.inscription-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #fefae0ff; /* Cornsilk background container */
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(40,54,24,0.2); /* Black Forest shadow */
  font-family: "Inter", sans-serif;
  color: #283618ff; /* Black Forest */
  position: relative;
}

/* Section Title */
.inscription-title {
  text-align: center;
  margin-bottom: 40px;
}

.inscription-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #283618ff; /* Black Forest */
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.inscription-title p {
  font-size: 1.2rem;
  color: #606c38ff; /* Olive Leaf */
  font-style: italic;
}

/* Overview Block */
.inscription-overview {
  margin-top: 35px;
  padding: 30px 35px;
  background: rgba(221,161,94,0.18); /* Sunlit Clay soft */
  border-left: 10px solid #bc6c25ff; /* Copperwood */
  border-radius: 16px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #283618ff; /* Black Forest */
  box-shadow: 0 10px 28px rgba(40,54,24,0.15);
  transition: 0.3s ease;
}

.inscription-overview:hover {
  background: rgba(221,161,94,0.28); /* Sunlit Clay hover */
}

/* Subtitle */
.inscription-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #bc6c25ff; /* Copperwood */
  margin: 50px 0 25px;
  padding-bottom: 8px;
 
 
 
  display: inline-block;
}

/* Process Steps Grid */
/* Process Steps Grid — 3 Cards Per Row */
.process-steps {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
  gap: 28px;
}


.step-card {
  background: #fefae0ff; /* Cornsilk */
  padding: 24px 20px;
  border-radius: 16px;
  border-top: 6px solid #606c38ff; /* Copperwood */
  box-shadow: 0 10px 28px rgba(40,54,24,0.14);
  transition: 0.3s ease;
  position: relative;
}

.step-card h4 {
  font-size: 1.25rem;
  color: #bc6c25ff; /* Copperwood */
  margin-bottom: 12px;
}

.step-card p {
  font-size: 1rem;
  color: #283618ff; /* Black Forest */
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #606c38ff; /* Olive Leaf vertical accent */
  border-radius: 6px 0 0 6px;
}

.step-card:hover {
  transform: translateY(-6px);
  background: rgba(96,108,56,0.12); /* Olive Leaf hover */
  box-shadow: 0 14px 35px rgba(40,54,24,0.18);
}

/* Video Section */
.video-section {
  margin-top: 55px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 4px solid #bc6c25ff; /* Copperwood */
  box-shadow: 0 12px 38px rgba(40,54,24,0.16);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

/* Image Section */
.inscription-image {
  margin-top: 50px;
  text-align: center;
}

.inscription-image img {
  width: 100%;
  max-width: 1122px;
  border-radius: 18px;
  border: 4px solid #606c38ff; /* Olive Leaf */
  box-shadow: 0 12px 38px rgba(40,54,24,0.16);
  transition: 0.3s ease;
}

.inscription-image img:hover {
  transform: scale(1.03);
}

/* Important Note Box */
.important-note {
  margin-top: 50px;
  padding: 32px 28px;
  background: rgba(96,108,56,0.12); /* Olive Leaf soft */
  border-left: 12px solid #606c38ff; /* Olive Leaf */
  border-radius: 18px;
  font-size: 1.12rem;
  color: #283618ff; /* Black Forest */
  box-shadow: 0 10px 32px rgba(40,54,24,0.16);
}

.important-note strong {
  display: block;
  margin-bottom: 10px;
  color: #bc6c25ff; /* Copperwood */
  font-size: 1.25rem;
}

  
  
 @media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}
 
  
  
  
  
  
  
  
  
/* ===============================
   Bharatshri
=============================== */
  
 .bharat-card-box {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  font-family: "Inter", sans-serif;
}

.bharat-card {
  background: #fff8e6;
  padding: 40px;
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.bharat-card .icon {
  font-size: 55px;
  margin-bottom: 15px;
}

.bharat-card h1 {
  font-size: 32px;
  font-weight: 800;
  color: #283618ff;
}

.bharat-card h3 {
  font-size: 22px;
  color: #bc6c25ff;
  margin: 10px 0;
  font-family: "Inter", sans-serif;
}

.bharat-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #283618ff;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
}
.bharat-learn-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #283618ff;  /* Button background */
    color: #fff;                  /* Button text color */
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.bharat-learn-btn:hover {
    background-color: #bc6c25ff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
=============================== */

/* Medium devices (tablets, 768px to 1024px) */
@media (max-width: 1024px) {
  .bharat-card-box {
    padding: 40px 15px;
  }

  .bharat-card {
    width: 90%;
    padding: 35px;
  }

  .bharat-card h1 {
    font-size: 28px;
  }

  .bharat-card h3 {
    font-size: 20px;
  }

  .bharat-card p {
    font-size: 16px;
  }

  .bharat-card .icon {
    font-size: 50px;
  }
}

/* Small devices (mobiles, up to 767px) */
@media (max-width: 767px) {
  .bharat-card-box {
    flex-direction: column;
    padding: 30px 10px;
  }

  .bharat-card {
    width: 100%;
    padding: 25px;
  }

  .bharat-card h1 {
    font-size: 24px;
  }

  .bharat-card h3 {
    font-size: 18px;
  }

  .bharat-card p {
    font-size: 15px;
  }

  .bharat-card .icon {
    font-size: 45px;
    margin-bottom: 12px;
  }
}








  
 .timeline-cards {
  padding: 60px 40px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.tl-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #283618ff;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 4 cards in one row */
  gap: 25px;
}

.tl-card {
  background: #dda15eff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.tl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.tl-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.tl-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #283618;
  font-family: "Inter", sans-serif;
}

.tl-card p {
  font-size: 17px;
  color: #fefae0ff;
  font-family: "Inter", sans-serif;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
=============================== */

/* Medium devices (tablets: 768px to 1024px) */
@media (max-width: 1024px) {
  .timeline-cards {
    padding: 50px 20px; /* reduce padding */
    overflow-x: hidden; /* prevent horizontal scroll */
  }

  .tl-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
  }

  .tl-card {
    padding: 20px;
  }

  .tl-icon {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .tl-card h3 {
    font-size: 18px;
  }

  .tl-card p {
    font-size: 16px;
  }
}

/* Small devices (mobiles: up to 767px) */
@media (max-width: 767px) {
  .timeline-cards {
    padding: 40px 10px; /* reduce side padding */
    overflow-x: hidden; /* remove horizontal scroll */
  }

  .tl-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 15px;
  }

  .tl-card {
    padding: 18px;
  }

  .tl-icon {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .tl-card h3 {
    font-size: 16px;
  }

  .tl-card p {
    font-size: 15px;
  }
}

















.obj-premium-new {
    padding: 70px 20px; /* reduced side padding for small screens */
    font-family: "Poppins", sans-serif;
    
    max-width: 1300px; /* max width */
    margin: 0 auto;     /* center the section */
    width: 100%;        /* allow it to shrink on smaller screens */
    box-sizing: border-box;
}

.op-title-new {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #283618;
}

.op-subtitle-new {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
}

/* Grid style for 5 cards in a row */
.op-list-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 cards in a row */
    gap: 20px;
}

/* Individual card */
.op-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.op-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon */
.op-icon-new {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fefae0, #bc6c25);
    border-radius: 50%;
    color: #283618;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Text */
.op-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #283618;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .op-list-new {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .op-list-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .op-list-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .op-card h3 {
        font-size: 1rem;
    }

    .op-icon-new {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .op-title-new {
        font-size: 2rem;
    }

    .op-subtitle-new {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .op-list-new {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}














/* Full section with background */
.impact-royal {
    padding: 70px 0; /* padding left/right will be inside container */
    text-align: center;
    font-family: "Poppins", sans-serif;
    background: #f8f9fa;
}

/* Inner container for content */
.impact-royal .container {
    max-width: 1300px; /* limit content width */
    margin: 0 auto;     /* center content */
    padding: 0 12%;     /* optional horizontal padding */
    box-sizing: border-box;
}

/* Decorative bar */
.royal-bar {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #bc6c25, #dda15e);
    margin: 0 auto 25px auto;
    border-radius: 20px;
}

/* Heading */
.impact-royal h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #283618;
}

/* Paragraph */
.impact-royal p {
    max-width: 1300px;
    margin: 15px auto 40px auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Buttons */
.royal-links {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.royal-links a {
    padding: 10px 26px;
    background: #283618;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.royal-links a:hover {
    background: #bc6c25;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
=============================== */

/* Medium devices (tablets: 768px to 1024px) */
@media (max-width: 1024px) {
  .impact-royal .container {
      padding: 0 8%;
  }

  .royal-bar {
      width: 70px;
      height: 5px;
      margin-bottom: 20px;
  }

  .impact-royal h2 {
      font-size: 2rem;
  }

  .impact-royal p {
      max-width: 600px;
      font-size: 1rem;
      margin-bottom: 30px;
  }

  .royal-links {
      gap: 15px;
      flex-wrap: wrap;
  }

  .royal-links a {
      padding: 9px 22px;
      font-size: 0.95rem;
  }
}

/* Small devices (mobiles: up to 767px) */
@media (max-width: 767px) {
  .impact-royal .container {
      padding: 0 5%;
  }

  .royal-bar {
      width: 60px;
      height: 4px;
      margin-bottom: 18px;
  }

  .impact-royal h2 {
      font-size: 1.7rem;
  }

  .impact-royal p {
      max-width: 100%;
      font-size: 0.95rem;
      margin-bottom: 25px;
  }

  .royal-links {
      gap: 12px;
      flex-direction: column;
      align-items: center;
  }

  .royal-links a {
      width: 100%;
      max-width: 200px;
      padding: 10px 0;
      font-size: 0.9rem;
      text-align: center;
  }
}





















/* =========================
   ASI MUSEUMS PAGE ONLY
   ========================= */
.asi-Museums {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.7;
}

.asi-Museums .container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  background: #ffffff;
}


/* Ensure proper readable width */
.asi-Museums .container {
  width: 100%;
  max-width: 1100px;   /* better readability */
}



/* Ensure container behaves normally */
.asi-Museums .container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: block !important;
}


 /* ===================================
   MODERN BLUE EPIGRAPHY SECTION
   =================================== */

.epigraphy-blue {
    background:#fefae0ff;
    padding: 50px 20px;
    font-family: "Poppins", sans-serif;
}

.epigraphy-box {
    background: #fefae0ff;
    max-width: 900px;
    margin: auto;
    padding: 40px 35px;
    border-left: 8px solid #606c18ff;   /* GOVERNMENT BLUE */
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.09);
}


.epi-section-label {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Inter", sans-serif;
    color: #283618ff;        /* dark red accent */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;    /* space before main h1 */
    text-align: center;    /* center the label */
    display: block;        /* ensure centering works */
}


/* MAIN TITLE */
.epi-main-title {
   font-family: "Inter", sans-serif;
    font-size: 2.0rem;
    font-weight: 800;
    color: #bc6c25ff;
    margin-bottom: 18px;
}

/* SUB TITLES */
.epi-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #bc6c25ff;
    margin-top: 35px;
    margin-bottom: 12px;
}

/* PARAGRAPH TEXT */
.epi-text {
    font-size: 16px;
    color: #606c38ff;
    line-height: 1.75;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    text-align:justify;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .epigraphy-box {
        padding: 25px 20px;
    }
    .epi-main-title {
        font-size: 26px;
    }
    .epi-subtitle {
        font-size: 20px;
    }
}
.epi-blue-note {
    background: #fefae0ff;
    border-left: 6px solid #606c38ff;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.75;
    color: #606c38ff;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: "Inter", sans-serif;
}
.epi-blue-note strong {
    color: #bc6c25ff;
     font-size: 20px;
     font-family: "Inter", sans-serif;
}
.epi-diagonal-glance {
  background: #f2f5f7;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.epi-diagonal-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #283618ff;
  font-family: "Inter", sans-serif;
}

/* Grid 3x2 */
.diagonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  column-gap: 30px; /* horizontal space between cards */
  row-gap: 11px;     /* no vertical space between rows */
}


/* Diagonal card style */
.diagonal-card {
 background: linear-gradient(135deg, #fefae0ff 50%, #dda15eff 50%);
  color: #333;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diagonal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.diagonal-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.diagonal-text h3 {
  margin: 0 0 10px 0;
  color: #283618ff;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.diagonal-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color:#283618ff;
  text-align: justify;
  font-family: "Inter", sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
  .diagonal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .diagonal-grid { grid-template-columns: 1fr; }
}

/* =====================
   Base styles (default)
   ===================== */
.page-top-links {
  margin: 20px 20px 20px 35px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.page-link {
  text-decoration: none;
  color: #283618;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: #bc6c25ff;
  color: #283618;
}

.page-separator {
  margin: 0;
  color: #888;
  font-weight: 600;
}

.page-main-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #283618;
  font-family: "Poppins", sans-serif;
}

/* =====================
   Responsive Media Queries
   ===================== */

/* Extra Large screens (1920px wide - Full HD) */
@media (min-width: 1920px) {
  .page-top-links {
    font-size: 22px;
    gap: 25px;        /* wider gap for big screens */
    margin-left: 50px;
  }

  .page-main-title {
    font-size: 40px;  /* bigger title for large screens */
    margin-bottom: 40px;
  }
}

/* Large screens (desktop, up to 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
  .page-top-links {
    font-size: 20px;
    gap: 15px;
    margin-left: 35px;
  }

  .page-main-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

/* Medium screens (laptop/tablet landscape) */
@media (max-width: 1199px) and (min-width: 768px) {
  .page-top-links {
    font-size: 18px;
    gap: 12px;
    margin-left: 25px;
  }

  .page-main-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

/* Small screens (tablet portrait / large mobile) */
@media (max-width: 767px) and (min-width: 480px) {
  .page-top-links {
    font-size: 16px;
    gap: 10px;
    margin-left: 20px;
  }

  .page-main-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/* Extra small screens (mobile) */
@media (max-width: 479px) {
  .page-top-links {
    display: flex;
    flex-direction: column; /* stack links vertically */
    align-items: flex-start;
    gap: 5px;
    margin-left: 15px;
    font-size: 15px;
  }

  .page-main-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}












/* =====================
   terms and condition
   ===================== */
.terms-section {
    background: #f7f7f3;
    padding: 80px 10%;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.terms-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('img/pattern-light.png'); /* optional texture */
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
}

.terms-wrapper {
    background: #fefae0ff;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.terms-header h2 {
    font-size: 36px;
    font-weight: 700;
   color: #283618ff;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.subline {
    text-align: center;
    font-size: 16px;
    margin-top: 8px;
    color: #bc6c25ff;
    font-weight: 500;
}

.terms-content {
    margin-top: 30px;
    line-height: 1.9;
    font-size: 17px;
  color: #283618ff;
    text-align: justify;
}

.terms-content p {
    margin-bottom: 18px;
    color: #606c38ff;
}

.terms-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #bc6c25ff;
    margin-top: 25px;
    margin-bottom: 12px;
}
/* ============================
   RESPONSIVE MEDIA QUERIES
============================ */

/* 💻 Large Laptops & Desktops (max-width: 1400px) */
@media (max-width: 1400px) {
    .terms-section {
        padding: 70px 8%;
    }

    .terms-header h2 {
        font-size: 34px;
    }

    .terms-wrapper {
        padding: 45px 35px;
    }
}

/* 💻 Laptops & Medium Screens (max-width: 1200px) */
@media (max-width: 1200px) {
    .terms-section {
        padding: 60px 7%;
    }

    .terms-header h2 {
        font-size: 32px;
    }

    .terms-content {
        font-size: 16px;
    }

    .terms-wrapper {
        padding: 40px 30px;
    }
}

/* 📱 Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .terms-section {
        padding: 55px 6%;
    }

    .terms-header h2 {
        font-size: 30px;
    }

    .terms-content h3 {
        font-size: 20px;
    }
}

/* 📱 Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    .terms-section {
        padding: 50px 5%;
    }

    .terms-wrapper {
        padding: 35px 25px;
    }

    .terms-header h2 {
        font-size: 28px;
    }

    .subline {
        font-size: 15px;
    }

    .terms-content {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .terms-content h3 {
        font-size: 19px;
    }
}

/* 📱 Standard Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
    .terms-section {
        padding: 45px 4%;
    }

    .terms-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .terms-header h2 {
        font-size: 26px;
    }

    .terms-content {
        font-size: 15px;
        text-align: left; /* better readability on mobile */
    }

    .terms-content h3 {
        font-size: 18px;
    }
}

/* 📱 Extra Small Phones (max-width: 400px) */
@media (max-width: 400px) {
    .terms-header h2 {
        font-size: 24px;
    }

    .terms-wrapper {
        padding: 25px 18px;
    }

    .subline {
        font-size: 14px;
    }

    .terms-content h3 {
        font-size: 17px;
    }

    .terms-content {
        font-size: 14.5px;
    }
}











/* ================================
   Privacy Policy — Single Container
================================ */

.privacy-single-container {
    padding: 80px 10%;
    background: #fefcf3;
    font-family: "Poppins", sans-serif;
}

.psc-container {
    max-width: 900px;
    margin: auto;
    background: #fefae0ff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-left: 6px solid #bc6c25;
}

.psc-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #283618;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.psc-header p {
    text-align: center;
    color: #606c38;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.psc-intro {
    text-align: center;
    color: #bc6c25ff;
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.8;
    font-family: "Inter", sans-serif;
}

.psc-content {
    margin-top: 40px;
}

.psc-section {
    margin-bottom: 35px;
}

.psc-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #283618ff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
}

.psc-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #bc6c25;
    margin-top: 18px;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.psc-section ul {
    margin-left: 20px;
    line-height: 1.7;
    color: #444;
}

.psc-section ul li {
    margin-bottom: 8px;
    color: #606c38ff;
    font-family: "Inter", sans-serif;
}

.psc-section p {
    color: #606c38ff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Icon Style */
.psc-section h3 i {
    color: #bc6c25;
}

/* ===========================
   Media Queries for All Sizes
=========================== */

/* Extra Large Screens (>= 1440px) */
@media (min-width: 1440px) {
    .psc-container {
        max-width: 1000px;
        padding: 60px 50px;
    }
    .psc-header h2 {
        font-size: 42px;
    }
    .psc-header p {
        font-size: 18px;
    }
    .psc-intro {
        font-size: 18px;
    }
    .psc-section h3 {
        font-size: 26px;
    }
    .psc-section h4 {
        font-size: 22px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 17px;
    }
}

/* Large Screens (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .psc-container {
        max-width: 950px;
        padding: 55px 45px;
    }
    .psc-header h2 {
        font-size: 40px;
    }
    .psc-header p {
        font-size: 17px;
    }
    .psc-intro {
        font-size: 17px;
    }
    .psc-section h3 {
        font-size: 25px;
    }
    .psc-section h4 {
        font-size: 21px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 16px;
    }
}

/* Medium Screens / Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .psc-container {
        max-width: 900px;
        padding: 50px 40px;
    }
    .psc-header h2 {
        font-size: 38px;
    }
    .psc-header p {
        font-size: 16px;
    }
    .psc-intro {
        font-size: 17px;
    }
    .psc-section h3 {
        font-size: 24px;
    }
    .psc-section h4 {
        font-size: 20px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 16px;
    }
}

/* Small Laptops / Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .psc-container {
        padding: 40px 30px;
    }
    .psc-header h2 {
        font-size: 34px;
    }
    .psc-header p {
        font-size: 15px;
    }
    .psc-intro {
        font-size: 16px;
    }
    .psc-section h3 {
        font-size: 22px;
    }
    .psc-section h4 {
        font-size: 18px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 15px;
    }
}

/* Tablets / Small Devices (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .psc-container {
        padding: 35px 25px;
    }
    .psc-header h2 {
        font-size: 30px;
    }
    .psc-header p {
        font-size: 14px;
    }
    .psc-intro {
        font-size: 15px;
    }
    .psc-section h3 {
        font-size: 20px;
    }
    .psc-section h4 {
        font-size: 17px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 14px;
    }
}

/* Mobile Devices (<576px) */
@media (max-width: 575px) {
    .psc-container {
        padding: 25px 15px;
        border-left-width: 4px; /* smaller accent line */
    }
    .psc-header h2 {
        font-size: 26px;
    }
    .psc-header p {
        font-size: 13px;
    }
    .psc-intro {
        font-size: 14px;
    }
    .psc-section h3 {
        font-size: 18px;
    }
    .psc-section h4 {
        font-size: 16px;
    }
    .psc-section ul li,
    .psc-section p {
        font-size: 14px;
    }
}









/* ==============================
   Copyright Policy Section
============================== */

.copyright-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #fffaf0 0%, #fefcf3 100%);
    font-family: "Inter", sans-serif;
}

.copyright-container {
    max-width: 900px;
    margin: auto;
    background: #fefae0ff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-left: 6px solid #bc6c25;
}

.cp-header h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    color: #283618ff;
}

.cp-header p {
    text-align: center;
    color: #606c38ff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.cp-intro {
    text-align: center;
    color: #bc6c25ff;
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.8;
}

.cp-content {
    margin-top: 40px;
}

.cp-section {
    margin-bottom: 35px;
}

.cp-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #bc6c25ff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-section p {
    font-size: 16px;
    color: #606c38;
    line-height: 1.7;
    margin-bottom: 12px;
}

.cp-section ul {
    margin-left: 20px;
    line-height: 1.7;
    color: #283618ff;
}

.cp-section ul li {
    margin-bottom: 8px;
}

/* ==============================
   Responsive Media Queries
============================== */

/* Extra Large Desktops (1200px and above) */
@media (min-width: 1200px) {
    .copyright-section {
        padding: 100px 12%;
    }
    .copyright-container {
        padding: 60px 50px;
    }
    .cp-header h2 {
        font-size: 42px;
    }
    .cp-header p {
        font-size: 18px;
    }
    .cp-section h3 {
        font-size: 26px;
    }
    .cp-section p,
    .cp-section ul li {
        font-size: 17px;
    }
}

/* Large Tablets / Small Desktops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .copyright-section {
        padding: 90px 10%;
    }
    .copyright-container {
        padding: 50px 40px;
    }
    .cp-header h2 {
        font-size: 36px;
    }
    .cp-header p {
        font-size: 16px;
    }
    .cp-section h3 {
        font-size: 24px;
    }
    .cp-section p,
    .cp-section ul li {
        font-size: 16px;
    }
}

/* Medium Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .copyright-section {
        padding: 70px 8%;
    }
    .copyright-container {
        padding: 45px 30px;
    }
    .cp-header h2 {
        font-size: 32px;
    }
    .cp-header p {
        font-size: 15px;
    }
    .cp-section h3 {
        font-size: 22px;
    }
    .cp-section p,
    .cp-section ul li {
        font-size: 15px;
    }
}

/* Small Tablets / Large Phones (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .copyright-section {
        padding: 60px 6%;
    }
    .copyright-container {
        padding: 40px 25px;
        border-left-width: 5px;
    }
    .cp-header h2 {
        font-size: 28px;
    }
    .cp-header p {
        font-size: 14px;
    }
    .cp-section h3 {
        font-size: 20px;
    }
    .cp-section p,
    .cp-section ul li {
        font-size: 14px;
    }
}

/* Extra Small Phones (<576px) */
@media (max-width: 575px) {
    .copyright-section {
        padding: 50px 4%;
    }
    .copyright-container {
        padding: 30px 20px;
        border-left-width: 4px;
    }
    .cp-header h2 {
        font-size: 24px;
    }
    .cp-header p {
        font-size: 13px;
    }
    .cp-section h3 {
        font-size: 18px;
    }
    .cp-section p,
    .cp-section ul li {
        font-size: 13px;
    }
}







/* ============================
   Hyperlinking Policy Design
============================ */
.hyperlink-policy {
    padding: 80px 10%;
    background: linear-gradient(145deg, #f9f9f9 0%, #fffaf0 100%);
   font-family: "Inter", sans-serif;
}

.hp-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08);
    border-left: 6px solid #bc6c25;
    position: relative;
}

.hp-header h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #283618;
    font-family: "Inter", sans-serif;
}

.hp-header p {
    text-align: center;
    color: #606c38;
    font-size: 16px;
    margin-top: 6px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.hp-intro p {
    text-align: center;
    font-size: 17px;
    color: #bc6c25ff;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
}

.hp-section {
    margin-top: 40px;
    padding: 20px 25px;
    border-left: 4px solid #bc6c25;
    background: #fefaf0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.hp-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #bc6c25;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
}

.hp-section p {
    font-size: 16px;
    color: #606c38;
    margin-bottom: 10px;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
}

.hp-section ul {
    margin-left: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.hp-section ul li {
    margin-bottom: 6px;
    margin-bottom: 6px;
    color: #606c38ff;
    font-family: "Inter", sans-serif;
}

/* Section icons color */
.hp-section h3 i {
    color: #283618;
}

/* ============================
   Responsive Design
============================ */
@media (max-width: 1200px) {
    .hp-container {
        padding: 45px 35px;
    }
    .hp-header h2 {
        font-size: 32px;
    }
    .hp-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .hyperlink-policy {
        padding: 60px 8%;
    }
    .hp-container {
        padding: 40px 25px;
        border-left-width: 5px;
    }
    .hp-header h2 {
        font-size: 30px;
    }
    .hp-section h3 {
        font-size: 18px;
    }
    .hp-section p, .hp-section ul li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hyperlink-policy {
        padding: 50px 5%;
    }
    .hp-container {
        padding: 30px 20px;
        border-left-width: 4px;
    }
    .hp-header h2 {
        font-size: 26px;
    }
    .hp-header p {
        font-size: 14px;
    }
    .hp-section h3 {
        font-size: 16px;
    }
    .hp-section p, .hp-section ul li {
        font-size: 14px;
    }
}






/* ==============================
   Accessibility - Single Container
============================== */
.accessibility-single-container {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    padding: 80px 5%;
     font-family: "Inter", sans-serif;
}

.asc-container {
    max-width: 900px;
    margin: auto;
    background: #fefae0ff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border: 2px solid #bc6c25ff;
    position: relative;
}

.asc-header {
    text-align: center;
    margin-bottom: 50px;
}

.asc-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #bc6c25ff;
     font-family: "Inter", sans-serif;
}

.asc-header p {
    font-size: 16px;
    color: #283618ff;
    margin-top: 8px;
    font-weight: 500;
     font-family: "Inter", sans-serif;
}

.asc-content h3 {
    font-size: 24px;
    color: #283618ff;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #bc6c25ff;
    padding-left: 12px;
     font-family: "Inter", sans-serif;
}

.asc-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
     font-family: "Inter", sans-serif;
}

.asc-content ul {
    margin-left: 25px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
     font-family: "Inter", sans-serif;
}

.asc-content ul li {
    margin-bottom: 8px;
 font-family: "Inter", sans-serif;
    color:#283618ff;
}

/* Responsive */
@media (max-width: 992px) {
    .asc-container {
        padding: 40px 30px;
    }
    .asc-header h2 {
        font-size: 32px;
    }
    .asc-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .asc-container {
        padding: 30px 20px;
        border-width: 1px;
        border-radius: 16px;
    }
    .asc-header h2 {
        font-size: 28px;
    }
    .asc-header p {
        font-size: 14px;
    }
    .asc-content h3 {
        font-size: 20px;
    }
    .asc-content p, 
    .asc-content ul li {
        font-size: 14px;
    }
}














/* FOOTER STYLES */


/* Main Section */
.site-bottom {
    background: #fefae0ff;
    color: #606c38ff;
    padding: 50px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}

/* Container for Columns */
.bottom-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

/* Column Style */
.bottom-col {
    flex: 1 1 220px;
    min-width: 200px;
}

/* Column Titles */
.col-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #bc6c25ff;
    font-family: "Inter", sans-serif;
}

/* Paragraphs */
.bottom-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Links */
.bottom-col a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.bottom-col a:hover {
    color: #ffcc00;
}

/* Lists */
.col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-list li {
    margin-bottom: 8px;
}

/* Social Column */
/* Social Icons Container */
.social-section .social-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Base Social Icon */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;         /* Circle width */
    height: 50px;        /* Circle height */
    border-radius: 50%;  /* Make it circular */
    font-size: 20px;     /* Icon size */
    color: #fff;         /* Icon color */
    background: #333;    /* Circle background */
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effects */
.social-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Brand Colors on Hover (optional) */
.social-btn.facebook:hover  { background: #3b5998; color: #fff; }
.social-btn.twitter:hover   { background: #1da1f2; color: #fff; }
.social-btn.instagram:hover { background: #e1306c; color: #fff; }
.social-btn.linkedin:hover  { background: #0077b5; color: #fff; }

/* Make sure icon is centered */
.social-btn i {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 50px; /* same as circle height */
    background-color: #283618ff;
}

/* Optional: Pulse effect */
.social-btn:hover::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: pulse 0.5s ease-out;
}

@keyframes pulse {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0; }
}

/* Bottom Note */
.bottom-note {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .bottom-container {
        flex-direction: column;
        gap: 20px;
    }
}



/* Column 1 About Links */
.about-link {
    color: #283618ff;  /* Change color as you want */
    text-decoration: none;
    transition: 0.3s ease;
}
.about-link:hover {
    color: #fff;
}

/* Column 2 Quick Links */
.links-list .link-item {
    color: #283618ff; /* Change color as you want */
    text-decoration: none;
    transition: 0.3s ease;
}
.links-list .link-item:hover {
    color: #ffcc00;
}

/* Column 3 Support Links */
.support-list .support-link {
    color:#283618ff;  /* Change color as you want */
    text-decoration: none;
    transition: 0.3s ease;
    font-family: "Inter", sans-serif;
}
.support-list .support-link:hover {
    color: #bc6c25ff;
}


.quick-links-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #283618ff;
    font-family: "Inter", sans-serif;
}













.conservation-cardd {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: #f7f7f7;
}

.cardd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  max-width: 1200px;
  flex-wrap: wrap;
}

.cardd-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 250px;
}

.cardd-image img {
  width: 90%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cardd-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.cardd-content {
  flex: 1;
  min-width: 300px;
}

.cardd-content h2 {
  font-size: 2rem;
  color: #bc6c25;
  margin-bottom: 20px;
}

.cardd-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #283618ff;
  margin-bottom: 15px;
}

.cardd-content .highlight {
  font-weight: 900;
  font-size: 1.3rem;
  color: #283618;
}













.cardd1-image {
  display: flex;
  flex-direction: column; /* or row if side-by-side */
  gap: 20px; /* space between the two images */
}


.cardd1-image img {
  width: 100%;
  height: 360px; /* adjust to your preferred height */
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}








/* about asi page */











/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 60px 40px;
    max-width: 1600px;  /* Updated for large screens */
    margin: auto;
    font-family: 'Inter', sans-serif;
}

/* ===== HEADER ===== */
.site-header {
    text-align: center;
    margin-bottom: 80px;
}

.site-title {
    font-size: 48px;  /* Slightly bigger for wide screens */
    color: #283618;
    margin-bottom: 12px;
}

.site-slogan {
    font-size: 1.4rem;
    color: #606c38;
    font-style: italic;
}

/* ===== CONTENT SECTION CLEAN ===== */
.content-section-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;  /* Wider gap for large screens */
    flex-wrap: wrap;
}

/* ===== IMAGE ===== */
.content-section-clean .content-image {
    flex: 0 0 auto;
}

.content-section-clean .content-image img {
    width: 400px;
    height: 300px;
    border-radius: 20px 5px 20px 5px;
    border: 4px solid #b5651d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== TEXT ===== */
.content-section-clean .content-text {
    flex: 1;
    max-width: 800px; /* Wider text area for big screens */
}

.content-section-clean .content-text h2 {
    font-size: 36px;
    color: #606c38;
    margin-bottom: 25px;
}

.content-section-clean .content-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .content-section-clean {
        gap: 60px;
    }

    .content-section-clean .content-image img {
        width: 450px;
    }

    .content-section-clean .content-text {
        max-width: 700px;
    }
}

@media (max-width: 900px) {
    .content-section-clean {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .content-section-clean .content-text {
        max-width: 100%;
    }

    .content-section-clean .content-text h2 {
        text-align: center;
        font-size: 28px;
    }

    .content-section-clean .content-text p {
        font-size: 16px;
    }

    .content-section-clean .content-image img {
        width: 90%;
        height: auto;
    }
}












/* ===== SECTION ===== */
.history-section {
    background-color: var(--cornsilk, #fff8dc);
    padding: 100px 20px; /* More vertical padding for spacious look */
    display: flex;
    justify-content: center;
}

/* ===== CENTER CONTAINER ===== */
.history-container {
    max-width: 1300px; /* Updated for large screens */
    width: 100%;
}

/* ===== OUTER CARD ===== */
.history-card {
    background-color: white;
    border-left: 12px solid var(--copperwood, #b5651d);
    padding: 40px 50px; /* Spacing increased for large screens */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* ===== INNER CARD ===== */
.history-inner-card {
    border: 2px solid var(--olive-leaf, #78866b);
    padding: 50px 60px;
    background-color: var(--cornsilk, #fff8dc);
}

/* ===== TITLE ===== */
.history-title {
    font-size: 38px; /* Bigger for wide screens */
    letter-spacing: 2px;
    color: var(--black-forest, #283618);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.history-title::after {
    content: "";
    width: 100px; /* Wider underline for big screens */
    height: 4px;
    background-color: var(--sunlit-clay, #d99058);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== IMAGE PLACEHOLDER ===== */
.history-image {
    height: 250px;
    border: 2px dashed var(--copperwood, #b5651d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    background-color: white;
}

.history-image span {
    color: var(--olive-leaf, #78866b);
    font-style: italic;
    font-size: 16px;
}

/* ===== TEXT ===== */
.history-inner-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black-forest, #283618);
    margin-bottom: 25px;
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .history-card {
        padding: 35px 40px;
    }

    .history-inner-card {
        padding: 40px 45px;
    }

    .history-title {
        font-size: 32px;
    }

    .history-inner-card p {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .history-card {
        padding: 25px 20px;
    }

    .history-inner-card {
        padding: 25px 20px;
    }

    .history-title {
        font-size: 28px;
    }

    .history-inner-card p {
        font-size: 16px;
    }

    .history-image {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .history-section {
        padding: 60px 15px;
    }

    .history-inner-card p {
        font-size: 15px;
    }
}













/* Heritage Section */
.heritage-section {
    font-family: 'Inter', sans-serif;
    background-color: cornsilk;
    padding: 60px 20px;
}

/* Container */
.heritage-container {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* vertically center left content and image */
    max-width: 1300px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left content */
.heritage-content {
    flex: 1 1 600px;
    color: #283618;
}

/* NEW DESIGN STYLES */
.new-design .heritage-tag {
    display: inline-block;
    background-color: #606c38;
    color: #fefae0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.heritage-header {
    font-size: 38px;
    margin-bottom: 20px;
}

.heritage-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Principle Cards */
.principle-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.principle-card {
    background: #fefae0;
    border-left: 6px solid #bc6c25;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.principle-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #283618;
}

.principle-card p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.6;
}

/* Right image area */
.heritage-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;  /* vertical center the image */
}

/* Square container */
.heritage-square {
    width: 560px;
    height: 420px;
    background-color: #283618;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;            /* remove top margin for vertical centering */
}

/* Image inside square with unique shape */
.heritage-square-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    clip-path: polygon(
        10% 0%, 
        90% 0%, 
        100% 20%, 
        100% 80%, 
        90% 100%, 
        10% 100%, 
        0% 80%, 
        0% 20%
    );
    transition: transform 0.3s ease;
}

.heritage-square-img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .heritage-container {
        max-width: 95%;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .heritage-container {
        flex-direction: column;
        align-items: center;
    }
    
    .heritage-content {
        flex: 1 1 100%;
        text-align: center;
    }

    .principle-list {
        justify-items: center;
    }

    .heritage-image {
        flex: 1 1 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .heritage-square {
        width: 320px;
        height: 320px;
    }
}









/* Section spacing */
.next-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
}

/* Rectangle card */
.highlighted-paragraph {
    max-width: 718px;
    background: #dda15eff;
    padding: 30px 40px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeUp 1s ease forwards;
}

/* Two-side borders */
.highlighted-paragraph::before,
.highlighted-paragraph::after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 2px;
    width: 7px;
    background: linear-gradient(180deg, #283618ff, #283618ff);
    border-radius: 11px;
}

.highlighted-paragraph::before {
    left: 0;
}

.highlighted-paragraph::after {
    right: 0;
}

/* Paragraph text */
.highlighted-paragraph p {
    font-size: 20px;
    line-height: 1.7;
    color: #fefae0ff;
    margin: 0;
    text-align: center;
    font-family: inter;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Link container */
.quote {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    border-left: 4px solid;
    padding-left: 15px;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    font-family: system-ui;
}

/* Highlighted link design */
.quote a {
    font-size: 16px;
    font-weight: 600;
    color: #8b6a1e;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    border: 2px solid #caa44a;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Logo image */
.quote a img {
    height: 123px;
    width: auto;
}

/* Hover effect */
.quote a:hover {
    background: linear-gradient(135deg, #caa44a, #8b6a1e);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

























 /*---------------------*/
/.inscription-section {
    background-color: $cornsilk;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.inscription-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.inscription-title {
  font-size: 35px;
    font-weight: 700;
    color: #283618ff;
    margin-bottom: 10px;
    animation: fadeDown 1s ease forwards;
    font-family: inter;
}

/* Paragraph */
.inscription-slogan {
  font-size: 20px;
    color: #283618ff;
    font-weight: 600;
    margin-bottom: 45px;
    animation: fadeUp 1s ease forwards;
    font-family: system-ui;
}

/* ==============================
   Card Layout
================================= */

.inscription-card {
    display: flex;
    gap: 10px;
    background-color: #dda15eff;
    padding: 57px;
    border-radius: 18px;
    box-shadow: 0 18px 36px;
    animation: zoomIn 1.2s ease forwards;
}

/* Image Side */
.inscription-card-image img {
   width: 100%;
    max-width: 500px;
    border-radius: 16px;
    border: 6px solid $olive-leaf;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    height: 367px;
}
/* Steps Side */
.inscription-card-steps {
   display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
    text-align: left;
    margin-left: 38px;
}

/* Step Card (same as original) */
.step {
    background-color: #fefae0ff;
    color: #283618ff;

    padding: 20px 22px;
    border-left: 6px solid $sunlit-clay;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeUp 1.2s ease forwards;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
    border-left-color: $copperwood;
}

/* ==============================
   Animations
================================= */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}






/* ==============================
   Responsive
================================= */

/* Tablet */
@media (max-width: 900px) {
    .inscription-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .inscription-steps .step:nth-child(4),
    .inscription-steps .step:nth-child(5) {
        grid-column: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .inscription-title {
        font-size: 2rem;
    }

    .inscription-steps {
        grid-template-columns: 1fr;
    }
}


/*----------------------*/












/* ==========================
   Section Base
========================== */

.classification-section {
    background-color: var(--cornsilk);
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
}

.classification-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.classification-title {
    text-align: center;
    font-size: 39px;
    font-weight: 700;
    color: #283618ff;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
}

.classification-intro {
   text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    font-size: 20px;
    color: var(--black-forest);
    line-height: 1.7;
}

/* ==========================
   Layout
========================== */

.classification-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

/* ==========================
   Left Image
========================== */

.classification-image-wrapper {
    position: relative;
}

.classification-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    border: 6px solid var(--olive-leaf);
    box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

.image-loop {
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 6px solid var(--sunlit-clay);
    background-color: var(--cornsilk);
}

/* ==========================
   Cards Grid (3 per row)
========================== */

.classification-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ==========================
   Card With Visible Border
========================== */

.classification-card {
   background-color: #bc6c25ff;
    padding: 22px 20px;
    border-radius: 10px;
    border: 3px solid #606c38ff;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    color: #fefae0ff;
}

/* Icon */
.classification-card .icon {
    font-size: 1.5rem;
    color: var(--olive-leaf);
}

/* Hover */
.classification-card:hover {
    border-color: var(--copperwood); /* border changes color */
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 1100px) {
    .classification-layout {
        grid-template-columns: 1fr;
    }

    .classification-image-wrapper img {
        height: 420px;
    }
}

@media (max-width: 900px) {
    .classification-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .classification-cards {
        grid-template-columns: 1fr;
    }

    .classification-title {
        font-size: 2.1rem;
    }
}















.research-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--cornsilk);
}

.section-header {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--black-forest);
}

/* Container for all cards */
.research-card-container {
  display: flex;
  flex-wrap: wrap;           /* wrap to next row */
  justify-content: center;   /* center cards */
  gap: 20px;                 /* spacing between cards */
  max-width: 1300px;         /* limit container width */
  margin: auto;              /* center container */
}

/* Single card class */
.research-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;

  /* 4 cards per row if container ≥1300px */
  flex: 0 1 calc(25% - 20px); 
  height: auto;              
}

/* Images inside card */
.research-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Text overlay */
.research-card .card-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
}

/* Hover effect */
.research-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments */

/* Medium screens (<1300px) → 3 per row */
@media screen and (max-width: 1300px) {
  .research-card {
    flex: 0 1 calc(33.33% - 20px); 
  }
}

/* Smaller screens (<900px) → 2 per row */
@media screen and (max-width: 900px) {
  .research-card {
    flex: 0 1 calc(50% - 20px); 
  }
}

/* Mobile (<600px) → 1 per row */
@media screen and (max-width: 600px) {
  .research-card {
    flex: 0 1 100%; 
  }
}











.garden-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 50px;
    max-width: 1400px;   /* reduced width */
    margin: auto;        /* center the section */
}

.garden-content {
    flex: 1 1 400px;
    background-color: var(--olive-leaf);
    color: var(--cornsilk);
    padding: 40px;
    border-radius: 40px 10px 40px 10%; /* Text box shape */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.garden-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--sunlit-clay);
}

.garden-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.garden-image {
    flex: 1 1 400px;
    position: relative;
}

.garden-image img {
    width: 100%;
    height: auto;
    border: 5px solid var(--copperwood);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    clip-path: polygon(
        10% 0%, 90% 0%, 
        100% 25%, 100% 75%, 
        90% 100%, 10% 100%, 
        0% 75%, 0% 25%
    );
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .garden-section {
        flex-direction: column;
    }

    .garden-image img {
        clip-path: polygon(
            10% 0%, 90% 0%, 
            100% 20%, 100% 80%, 
            90% 100%, 10% 100%, 
            0% 80%, 0% 20%
        );
    }
}









/* Section Styling */
.temple-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--cornsilk);
    max-width: 1300px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    gap: 40px;
}

/* Content Styling */
.temple-section .content {
    flex: 1;
    min-width: 300px;
}

.temple-section .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--olive-leaf);
    border-bottom: 4px solid var(--sunlit-clay);
    display: inline-block;
    padding-bottom: 5px;
}

.temple-section .content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Image Styling */
.temple-section .image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.temple-section .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px var(--copperwood);
    border: 4px solid var(--sunlit-clay);
    transition: transform 0.3s ease;
    height: 311px;
}

.temple-section .image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
    .temple-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .temple-section .content, 
    .temple-section .image {
        max-width: 90%;
    }
}













/* Section container */
.asi-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1450px;   /* limit section width */
    margin: auto;         /* center the section */
}

/* Top row: images side by side */
.images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual image cards */
.image-card {
    width: 250px;
    border: 4px solid;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-card img {
    width: 100%;
    height: auto;
}

/* Individual border colors */
.image-card-1 { border-color: var(--olive-leaf); }
.image-card-2 { border-color: var(--black-forest); }
.image-card-3 { border-color: var(--sunlit-clay); }
.image-card-4 { border-color: var(--copperwood); }

/* Hover effect for images */
.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Content box below images */
.content-box {
    width: 90%;
    max-width: 1300px;   /* ensure content box fits within section */
    background-color: #fff;
    border: 4px solid var(--black-forest);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Specific content box class if needed */
.content-box-1 {}

/* Responsive adjustments */
@media (max-width: 1050px) {
    .image-card {
        width: 45%;
    }
}

@media (max-width: 650px) {
    .image-card {
        width: 100%;
    }
}












/* Section Styling */
.epigraphy-section {
    background-color: var(--cornsilk);
    padding: 80px 10%;
    max-width: 1300px;   /* limit section width */
    margin: auto;        /* center the section */
    margin-top:10px;
}

.epigraphy-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Section */
.epigraphy-image-wrapper {
    position: relative;
    flex: 1;
}

.epigraphy-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Decorative Shape */
.shape-overlay {
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: var(--sunlit-clay);
    top: -20px;
    left: -20px;
    border-radius: 30px;
    z-index: 1;
}

/* Content Section */
.epigraphy-content {
    flex: 1;
    color: var(--black-forest);
}

.epigraphy-content h2 {
    font-size: 36px;
    color: var(--olive-leaf);
    margin-bottom: 20px;
}

.epigraphy-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: var(--copperwood);
    color: var(--cornsilk);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--black-forest);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .epigraphy-container {
        flex-direction: column;
    }

    .shape-overlay {
        display: none;
    }
}











.ua-section {
    padding: 60px 20px;
    background-color: var(--cornsilk);
}

.ua-container {
    max-width: 1300px;
    margin: auto;
}

.ua-title {
    text-align: center;
    font-size: 36px;
    color: var(--olive-leaf);
    margin-bottom: 40px;
}

.ua-image-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.ua-image-box {
    flex: 1;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--sunlit-clay);
    box-shadow: 0 10px 25px rgba(40, 54, 24, 0.25);
}

.ua-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ua-content {
    background-color: var(--black-forest);
    padding: 30px;
    border-radius: 14px;
}

.ua-content p {
    color: var(--cornsilk);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
}

.ua-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ua-image-row {
        flex-direction: column;
    }

    .ua-image-box {
        height: 240px;
    }

    .ua-title {
        font-size: 28px;
    }
}


















/* Main Layout */
/* Limit overall width to 1300px and center */
.survey-wrapper {
    max-width: 1400px;   /* restrict width */
    margin: auto;        /* center horizontally */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content */
.survey-content {
    width: 55%;
}

.survey-title {
    color: var(--black-forest);
    font-size: 36px;
    margin-bottom: 20px;
}

.survey-text {
    color: var(--olive-leaf);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    font-family: "Inter", sans-serif;
}

/* Right Visual Section */
.survey-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

/* Polygon Shape */
.polygon-frame {
   width: 492px;
    height: 392px;
    background-color: var(--sunlit-clay);
    clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
    padding: 10px;
}

.polygon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
    border: 4px solid var(--copperwood);
}


















/* Section Background */
.bharatshri-wrapper {
    background-color: var(--cornsilk);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Card Layout */
.bharatshri-card {
    max-width: 1000px;
    background-color: var(--black-forest);
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.bharatshri-logo-box {
    flex-shrink: 0;
    background-color: #fefae0ff;
    padding: 30px;
    border-radius: 14px;
}

.bharatshri-logo {
    width: 160px;
    height: auto;
    display: block;
}

/* Content Styling */
.bharatshri-content {
    color: var(--cornsilk);
}

.bharatshri-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--sunlit-clay);
}

.bharatshri-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Button */
.bharatshri-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: var(--copperwood);
    color: var(--cornsilk);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bharatshri-btn:hover {
    background-color: var(--sunlit-clay);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .bharatshri-card {
        flex-direction: column;
        text-align: center;
    }

    .bharatshri-logo {
        width: 120px;
    }
}
















/* Section Background */
.asi-heritage-section {
    background: linear-gradient(
        135deg,
        var(--black-forest),
        var(--olive-leaf)
    );
    padding: 80px 20px;
}

/* Container */
.asi-container {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.asi-header {
    text-align: center;
    margin-bottom: 40px;
}

.asi-title {
    font-size: 38px;
    color: var(--cornsilk);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.asi-divider {
    display: inline-block;
    width: 90px;
    height: 4px;
    background-color: var(--sunlit-clay);
    border-radius: 2px;
}

/* Content Box */
.asi-content-box {
    background-color: var(--cornsilk);
    padding: 45px;
    border-left: 8px solid var(--copperwood);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.asi-content-box:hover {
    transform: translateY(-6px);
}

/* Text */
.asi-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black-forest);
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .asi-title {
        font-size: 30px;
    }

    .asi-content-box {
        padding: 30px;
    }

    .asi-description {
        font-size: 16px;
    }
}
























/* ===== arabic page 06/02/2026 ===== */





/* Main container with wave-like background */
.arabic-class1-container {
    max-width: 1200px;
    margin: 50px auto;
    background: linear-gradient(160deg, #fefae0ff 50%, #606c38ff 50%); /* cornsilk + olive-leaf */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 0;
}

/* Header with accent bar */
.arabic-class1-header {
    background-color: #283618ff; /* black-forest */
    color: #fefae0ff; /* cornsilk */
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* slight wave at bottom */
}

/* Content area */
.arabic-class1-content {
    padding: 30px 40px;
    background-color: #fefae0ff; /* cornsilk */
    border-radius: 0 0 20px 20px;
}

/* Paragraphs */
.arabic-class1-content p {
    font-size: 1.05em;
    line-height: 1.75;
    color: #283618ff; /* black-forest */
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .arabic-class1-header {
        font-size: 1.5em;
        padding: 20px 15px;
    }
    .arabic-class1-content {
        padding: 25px 20px;
    }
    .arabic-class1-content p {
        font-size: 1em;
    }
}






/* Full Section */
.arabic-class2-section {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    background: linear-gradient(to bottom, #fefae0ff, #dda15eff20);
    border-radius: 20px;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Left Vertical Accent Bar */
.arabic-class2-side {
    width: 60px;
    background: linear-gradient(#bc6c25ff, #283618ff);
}

/* Content Area */
.arabic-class2-box {
    padding: 30px 35px;
    background: #fefae0ff;
    flex: 1;
}

/* Title Bar */
.arabic-class2-title {
    font-size: 1.9em;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 4px solid #bc6c25ff;
    color: #283618ff;
}

/* Paragraph */
.arabic-class2-box p {
    font-size: 1.05em;
    line-height: 1.75;
    color: #283618ff;
    text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .arabic-class2-section {
        flex-direction: column;
    }
    .arabic-class2-side {
        width: 100%;
        height: 15px;
    }
}







/* Section Background */
.arabic-class3-section {
    padding: 60px 20px;
    background: #fefae0ff; /* cornsilk */
    display: flex;
    justify-content: center;
}

/* Center Container */
.arabic-class3-container {
    max-width: 1200px;
    width: 100%;
}

/* Title Ribbon */
.arabic-class3-title {
    background: #606c38ff; /* olive leaf */
    color: #fefae0ff; /* cornsilk */
    padding: 18px 25px;
    border-left: 10px solid #bc6c25ff; /* copperwood */
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
    border-radius: 0 10px 10px 0;
    font-family: "Inter", sans-serif;
}

/* Card Box */
.arabic-class3-card {
    background: #ffc10721;
    margin-top: 25px;
    padding: 30px;
    border-radius: 12px;
    border-top: 6px solid #dda15eff; /* sunlit clay */
    box-shadow: 0 6px 0 #283618ff; /* black forest */
    font-family: "Inter", sans-serif;
}

/* Decorative Line */
.arabic-class3-line {
    width: 70px;
    height: 5px;
    background: #bc6c25ff; /* copperwood */
    margin-bottom: 20px;
    border-radius: 3px;
}

/* Paragraphs */
.arabic-class3-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #283618ff; /* black forest */
    text-align: justify;
    margin-bottom: 20px;
}










/* Main wrapper with 3D depth */
.arabic-class4 {
    padding: 60px 20px;
    background: #fefae0;
    font-family: "Inter", sans-serif;
    position: relative;

    /* 3D LOOK ADDED */
    box-shadow: inset 0 0 40px rgba(0,0,0,0.18), 
                0 20px 40px rgba(0,0,0,0.25);
    border-top: 6px solid #bc6c25;
    border-bottom: 6px solid #dda15e;

    /* NEW: fixed width and centered */
    max-width: 1200px;
    margin: 0 auto;
}


/* Left strip with 3D tube look */
.ac4-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 100%;
    background: linear-gradient(#bc6c25, #dda15e);
    opacity: 0.95;

    /* 3D EDGES */
    box-shadow: inset -5px 0 15px rgba(0,0,0,0.3);
}

/* Main content block with 3D elevation */
.ac4-box {
    margin-left: 90px;
    padding: 45px;
    background: #606c38;
    border-left: 10px solid #bc6c25;
    border-radius: 12px;
    color: #fefae0;

    /* 3D SOFT LIFT */
    box-shadow: 0 18px 35px rgba(0,0,0,0.45),
                inset 0 0 25px rgba(255,255,255,0.15);
}

/* Heading with 3D underline glow */
.ac4-box h2 {
    font-size: 32px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 4px solid #dda15e;
    color: #fefae0;

    /* LIGHT 3D TEXT TOP GLOW */
    text-shadow: 0 3px 6px rgba(0,0,0,0.55);
}

/* Image frame with 3D border */
.ac4-img-box img {
    width: 408px;
    height: 57px;
    display: block;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 3px solid #fefae0;

    /* 3D POP */
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* 3D quote card */
.ac4-quote {
    background: #dda15e;
    color: #283618;
    padding: 14px 20px;
    border-left: 8px solid #bc6c25;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 22px;

    /* 3D RAISED */
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.ac4-quote span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

/* Paragraph text with slight embossed look */
.ac4-box p {
    color: #fefae0;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 18px;
text-align: justify;
    /* TEXT DEPTH */
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Responsive */
@media(max-width: 768px){
    .ac4-strip {
        display: none;
    }
    .ac4-box {
        margin-left: 0;
    }
}










/* MAIN WRAPPER (FULL SECTION) */
.arabic-class5 {
    padding: 60px 0;
    
    font-family: "Inter", sans-serif;
}

/* CENTERED CONTAINER – EXACT 1200px */
.ac5-wrapper {
    width: 1200px;
    margin: auto;
    position: relative;
    padding: 40px 50px;
    background: #fefae0; /* olive-leaf */
    
    /* 3D LAYER */
    border-radius: 18px;
    
    
    border: 6px solid #bc6c25;
}

/* TITLE BOX WITH ROYAL CURVED TOP */
.ac5-title-box {
    background: linear-gradient(135deg, #dda15e, #bc6c25);
    padding: 20px 35px;
    margin-bottom: 35px;
    
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.45);

    border-left: 8px solid #283618;
    border-right: 8px solid #283618;

    position: relative;
}

/* TITLE TEXT */
.ac5-title-box h2 {
    margin: 0;
    font-size: 34px;
    color: #283618;
    font-weight: 800;

    text-shadow: 0 3px 3px rgba(0,0,0,0.3);
}

/* CONTENT AREA */
.ac5-content {
    background: #fefae0;
    padding: 35px 40px;
    border-radius: 15px;

    border-left: 8px solid #dda15e;

    /* 3D SOFT FLOAT */
    box-shadow: 
        0 20px 30px rgba(0,0,0,0.35),
        inset 0 0 20px rgba(0,0,0,0.15);
}

/* PARAGRAPH TEXT */
.ac5-content p {
    color: #283618;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 18px;
text-align: justify;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}








.arabic-class6 {
    padding: 70px 0;
    font-family: "Inter", sans-serif;
}

/* Main 1200px Container */
.ac6-container {
    width: 1200px;
    margin: auto;
    position: relative;
    padding: 50px;
    background: #fefae0; /* cornsilk */
    border-radius: 20px;

    box-shadow:
        0 18px 25px rgba(0,0,0,0.35),
        inset 0 0 25px rgba(0,0,0,0.25);
    border: 6px solid #bc6c25; /* copperwood */
}

/* Vertical Ribbon Strip */
.ac6-ribbon {
    position: absolute;
    top: 0;
    left: -40px;
    width: 35px;
    height: 100%;
    background: linear-gradient(#bc6c25, #dda15e); /* copperwood → sunlit clay */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
}

/* Header Box */
.ac6-header {
    padding: 20px 30px;
    background: #606c38; /* olive-leaf */
    border-left: 8px solid #283618; /* black forest */
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.ac6-header h2 {
    margin: 0;
    color: #fefae0; /* cornsilk */
    font-size: 34px;
    font-weight: 800;
    text-shadow: 0 3px 3px rgba(0,0,0,0.3);
}

/* Content Box */
.ac6-content {
    background: #606c38; /* olive-leaf */
    padding: 40px;
    border-radius: 15px;
    border-left: 10px solid #dda15e; /* sunlit clay */
    box-shadow:
        0 20px 30px rgba(0,0,0,0.4),
        inset 0 0 25px rgba(0,0,0,0.2);
}

/* Heading inside content */
.ac6-block h3 {
    color: #fefae0;
    font-size: 26px;
    margin-bottom: 18px;
    border-bottom: 3px solid #bc6c25;
    display: inline-block;
    padding-bottom: 5px;
}

/* Paragraphs */
.ac6-block p {
    color: #fefae0;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 18px;
    text-align: justify;
}

/* Divider Line */
.ac6-divider {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #dda15e, #bc6c25);
    margin: 35px 0;
    border-radius: 10px;
}







/* MAIN SECTION */
.arabic-class7-fresh2 {
    padding: 70px 0;
    background: #fefae0;
    font-family: "Inter", sans-serif;
}

/* OUTER FRAME */
.ac7-box-frame2 {
    width: 1200px;
    margin: auto;
    background: #fefae0;
    border-radius: 22px;

    border-top: 14px solid #283618;
    border-bottom: 14px solid #bc6c25;

    box-shadow:
        0 18px 35px rgba(0,0,0,0.35),
        inset 0 0 20px rgba(0,0,0,0.15);

    padding: 50px 60px;
    position: relative;
}

/* LEFT COLOR BAR */
.ac7-left-strip2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 100%;
    background: linear-gradient(#283618, #606c38);
    box-shadow: inset -5px 0 12px rgba(0,0,0,0.4);
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
}

/* TITLE BLOCK */
.ac7-title2 {
    background: #dda15e;
    padding: 22px 35px;
    border-radius: 15px;

    border-left: 12px solid #283618;
    border-right: 12px solid #283618;

    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    margin-bottom: 40px;
}

.ac7-title2 h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: #283618;
}

/* CONTENT SECTION */
.ac7-content2 {
    background: #fefae0;
    padding: 40px 45px;
    border-radius: 18px;

    border-left: 12px solid #dda15e;
    border-right: 12px solid #dda15e;

    box-shadow:
        0 18px 30px rgba(0,0,0,0.5),
        inset 0 0 25px rgba(0,0,0,0.3);
}

/* HEADINGS */
.ac7-content2 h3 {
    font-size: 26px;
    color: #283618;
    margin-bottom: 14px;
    border-bottom: 3px solid #bc6c25;
    padding-bottom: 5px;
    display: inline-block;
}

/* TEXT */
.ac7-content2 p {
    color: #283618;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* DIVIDER */
.ac7-divider2 {
    height: 7px;
    width: 100%;
    background: linear-gradient(to right, #bc6c25, #dda15e);
    border-radius: 10px;
    margin: 35px 0;
}










/* MAIN SECTION */
.arabic-class8 {
    padding: 70px 0;
    background: #fefae0;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
}

/* OVERALL CONTAINER */
.ac8-container {
    max-width: 1200px;
    width: 100%;
    background: #fefae0;
    border-radius: 30px;
    padding: 50px 40px;
    border: 4px solid #bc6c25;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 0 20px rgba(0,0,0,0.1);
}

/* TITLE BANNER */
.ac8-title {
    background: #dda15e;
    border-radius: 25px;
    padding: 25px 40px;
    text-align: center;
    border: 5px solid #283618;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    margin-bottom: 40px;
}

.ac8-title h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
    color: #283618;
}

/* CONTENT CARDS */
.ac8-card {
    background: #fefae0;
    border-radius: 20px;
    padding: 35px 40px;
    border: 4px solid #dda15e;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

/* ALTERNATING BACKGROUND FOR INDIAN THULTH */
.ac8-card.alt-bg {
    background: #fefae0;
}

/* HEADINGS INSIDE CARDS */
.ac8-card h3 {
    font-size: 26px;
    color: #283618;
    margin-bottom: 15px;
    border-bottom: 4px solid #bc6c25;
    padding-bottom: 6px;
}

/* PARAGRAPHS INSIDE CARDS */
.ac8-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #283618;
    margin-bottom: 18px;
    text-align: justify;
}

/* GOLDEN DIVIDER */
.ac8-divider {
    height: 8px;
    width: 100px;
    background: linear-gradient(to right, #bc6c25, #dda15e);
    border-radius: 12px;
    margin: 25px 0;
}







/* MAIN SECTION */
.arabic-class9 {
    padding: 70px 0;
    background: #fefae0;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
}

/* OVERALL CONTAINER */
.ac9-container {
    max-width: 1200px;
    width: 100%;
    background: #606c38;
    border-radius: 30px;
    padding: 50px 40px;
    border: 10px solid #bc6c25;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 0 20px rgba(0,0,0,0.1);
}

/* TITLE BANNER */
.ac9-title {
    background: #dda15e;
    border-radius: 25px;
    padding: 25px 40px;
    text-align: center;
    border: 5px solid #283618;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    margin-bottom: 40px;
}

.ac9-title h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
    color: #283618;
}

/* CONTENT BLOCKS */
.ac9-block {
    background: #283618;
    border-radius: 20px;
    padding: 35px 40px;
    border-left: 8px solid #dda15e;
    border-right: 8px solid #dda15e;
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

/* ALTERNATING BACKGROUND FOR BAHAR STYLE */
.ac9-block.alt-bg {
    background: #606c38;
}

/* HEADINGS */
.ac9-block h3 {
    font-size: 26px;
    color: #fefae0;
    margin-bottom: 15px;
    border-bottom: 4px solid #bc6c25;
    padding-bottom: 6px;
}

/* PARAGRAPHS */
.ac9-block p {
    font-size: 18px;
    line-height: 1.9;
    color: #fefae0;
    margin-bottom: 18px;
    text-align: justify;
}

/* ORNAMENTAL DIVIDER */
.ac9-divider {
    height: 8px;
    width: 100px;
    background: linear-gradient(to right, #bc6c25, #dda15e);
    border-radius: 12px;
    margin: 25px 0;
}










.arabic-class11 {
    padding: 80px 20px;
    background: #ffc1071a; /* Olive Leaf background */
    font-family: "Inter", sans-serif;
    color: #283618;
    display: flex;
    justify-content: center;
    line-height: 1.7;
    font-size: 18px;
    text-align: justify;
}

.ac11-container {
    max-width: 1200px;
    width: 100%;
    background: #fefae0; /* Cornsilk for the text area */
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.ac11-title {
    grid-column: 1 / 3;
    background: #dda15e;
    color: #283618;
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    padding: 25px;
    border-radius: 50px 50px 25px 25px;
    margin-bottom: 40px;
    border: 4px solid #bc6c25;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.ac11-main p {
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 18px;
    color: #283618;
    text-align: justify;
}

.ac11-side {
    background: #283618; /* black-forest */
    padding: 20px;
    border-radius: 20px;
    color: #fefae0;
    font-size: 16px;
    line-height: 1.7;
    border-left: 6px solid #dda15e;
    height: 300px;
}

.ac11-divider {
    height: 6px;
    width: 80px;
    background: linear-gradient(to right, #bc6c25, #dda15e);
    border-radius: 12px;
    margin: 25px 0;
    color: #283618;
}

/* Mobile Responsiveness */
@media(max-width: 900px){
    .ac11-container {
        grid-template-columns: 1fr;
    }
    .ac11-title {
        grid-column: 1;
    }
}








.arabic-class14 {
    padding: 80px 20px;
    font-family: "Inter", sans-serif;
    background: #fefae0; /* Cornsilk page background */
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1250px;
    margin: 0 auto; /* centers the section horizontally */
}

/* Panel */
.ac14-panel {
    position: relative;
    background: #283618; /* Black Forest */
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    color: #fefae0;
}

/* Angled Title Banner */
.ac14-title {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #dda15e; /* Sunlit Clay */
    padding: 12px 25px;
    font-size: 28px;
    font-weight: 900;
    border-radius: 15px 15px 0 0;
    transform: rotate(-2deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Decorative underline inside panel */
.ac14-underline {
    height: 6px;
    width: 100px;
    background: linear-gradient(to right, #bc6c25, #dda15e);
    border-radius: 10px;
    margin: 20px 0;
}

/* Paragraph styling */
.ac14-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Alternating panel colors */
.ac14-panel:nth-child(odd) { background: #606c38; } /* Olive Leaf */
.ac14-panel:nth-child(even) { background: #283618; } /* Black Forest */

/* Diagonal cut-out effect on bottom */
.ac14-panel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

/* Mobile */
@media(max-width: 900px){
    .ac14-title { font-size: 24px; padding: 10px 20px; left: 15px; }
}











/* ==================================================
   5th feb
==================================================*/

/* ==================================================
   EPIGRAPHY SECTION — HERITAGE PANEL DESIGN (5 colors only)
==================================================*/






.epigraphy-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #fefae0ff; /* Cornsilk */
  border-radius: 16px;
  border: 4px solid #283618ff; /* Black Forest */
  box-shadow: 0 10px 40px rgba(40,54,24,0.25);
  font-family: "Inter", sans-serif;
}

/* ---------- Title ---------- */
.epigraphy-title {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 3px solid #bc6c25ff; /* Copperwood */
}

.epigraphy-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #283618ff;
  text-transform: uppercase;
}

.content-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.epigraphy-ptag {
    text-align: justify;
    line-height: 1.8;
    font-size: 20px;
    color: #000;
}













.epigraphy-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #fefae0ff; /* Cornsilk */
  border-radius: 16px;
  border: 4px solid #283618ff; /* Black Forest */
  box-shadow: 0 10px 40px rgba(40,54,24,0.25);
  font-family: "Inter", sans-serif;
}

/* ---------- Title ---------- */
.epigraphy-title {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 3px solid #bc6c25ff; /* Copperwood */
}











/* ---------- Overview Block ---------- */
/* Wrapper for spacing control */
.epi-study1-wrapper {
  margin: 50px 0;
  font-family: Inter, sans-serif;
}

/* Epigraphy content box */
.epi-study1-overview {
  position: relative;
  padding: 30px 35px;
  background-color: #fefae0ff; /* cornsilk */
  border: 2px solid #606c38ff; /* live-leaf */
  border-radius: 14px;
  color: #283618ff; /* black-forest */
  font-size: 18px;
  line-height: 1.85;
  box-shadow: 0 8px 22px rgba(40, 54, 24, 0.15);
}

/* Decorative accent strip */
.epi-study1-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #dda15eff,   /* sunlit-clay */
    #bc6c25ff    /* copperwood */
  );
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}











/* Main Section */
.epistudy2-epigraphy-area {
    padding: 90px 20px;
    background: #606c38ff;
}

/* Wrapper Card */
.epistudy2-epigraphy-wrapper {
    max-width: 1000px;
    margin: auto;
    background-color: var(--cornsilk);
    padding: 60px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Decorative Corner */
.epistudy2-epigraphy-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--sunlit-clay);
    border-radius: 0 12px 0 120px;
}

/* Header */
.epistudy2-epigraphy-header {
    margin-bottom: 35px;
}

.epistudy2-epigraphy-tag {
    display: inline-block;
    background-color: var(--copperwood);
    color: var(--cornsilk);
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

.epistudy2-epigraphy-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--black-forest);
    border-left: 6px solid var(--olive-leaf);
    padding-left: 18px;
}

/* Content */
.epistudy2-epigraphy-content p {
    font-size: 19.5px;
    line-height: 1.9;
    color: var(--black-forest);
    text-align: justify;
    margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .epistudy2-epigraphy-wrapper {
        padding: 35px;
    }

    .epistudy2-epigraphy-title {
        font-size: 26px;
    }

    .epistudy2-epigraphy-content p {
        font-size: 15px;
    }
}








/* Section Wrapper */
.epistudy3-inscription-section {
  max-width: 1100px; /* Slightly wider wrapper */
  margin: 80px auto;
  padding: 0 20px;
}

/* Title and Line */
.epistudy3-inscription-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive-leaf);
  margin: 0;
  text-align: center;
}

.epistudy3-inscription-line {
  display: block;
  width: 250px;
  height: 4px;
  margin: 10px auto 40px auto;
  background-color: var(--sunlit-clay);
  border-radius: 2px;
}

/* Content Box */
.epistudy3-inscription-box {
  background-color: var(--white-snow);
  padding: 35px 25px;
  border-left: 6px solid var(--copperwood);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 1060px;        /* updated width */
  margin: 0 auto;       /* center horizontally */
}

.epistudy3-inscription-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Text */
.epistudy3-inscription-text {
  font-size: 19px;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
  color: var(--black-forest);
}

.epistudy3-inscription-text em {
  color: var(--olive-leaf);
  font-style: italic;
}

.epistudy3-inscription-text strong {
  color: var(--copperwood);
}

/* Responsive */
@media (max-width: 1200px) {
  .epistudy3-inscription-box {
    width: 95%; /* Adjust width for smaller screens */
  }
}

@media (max-width: 768px) {
  .epistudy3-inscription-title {
    font-size: 1.6rem;
  }

  .epistudy3-inscription-box {
    padding: 20px;
    width: 100%;
  }
}















.epistudy4-writing-heritage-section {
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  background: #606c388c;
}

.epistudy4-writing-heritage-card {
  max-width: 900px;
  background-color: var(--cornsilk);
  padding: 50px 40px;
  border-left: 8px solid var(--sunlit-clay);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.epistudy4-writing-heritage-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--black-forest);
  margin-bottom: 25px;
  position: relative;
}

.epistudy4-writing-heritage-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--copperwood);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.epistudy4-writing-heritage-text {
  font-size: 19px;
  color: var(--olive-leaf);
  line-height: 1.7;
  text-align: justify;
}












/* Full-width section with subtle gradient */
.epistudy5-history-section {
  width: 100%;
  min-height: 600px;
  background: #606c388c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

/* Floating semi-transparent overlay */
.epistudy5-history-overlay {
  background-color: rgba(254, 250, 224, 0.95); /* cornsilk semi-transparent */
  padding: 60px 50px;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  text-align: left;
  position: relative;
}

/* Heading with stylish underline */
.epistudy5-history-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black-forest);
  margin-bottom: 25px;
  position: relative;
}

.epistudy5-history-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--copperwood);
  border-radius: 4px;
  margin-top: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Paragraph text */
.epistudy5-history-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--olive-leaf);
  text-align: justify;
  letter-spacing: 0.5px;
}

/* Optional first letter drop-cap */
.epistudy5-history-text::first-letter {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--sunlit-clay);
  float: left;
  margin-right: 10px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .epistudy5-history-overlay {
    padding: 35px 25px;
  }

  .epistudy5-history-title {
    font-size: 28px;
  }

  .epistudy5-history-text {
    font-size: 16px;
  }
}









/* Container */
.epistudy6-content-wrapper {
    max-width: 1106px;
    margin: 60px auto;
    padding: 80px 40px;
    background-color: var(--olive-leaf);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(40, 54, 24, 0.45);
    color: var(--cornsilk);
}

/* Section Title */
.epistudy6-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    color: var(--sunlit-clay);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px var(--black-forest);
    position: relative;
}

/* Decorative underline */
.epistudy6-section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background-color: var(--copperwood);
    margin: 18px auto 0;
    border-radius: 4px;
}

/* Paragraphs */
.epistudy6-text-block {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 26px;
    text-align: justify;
    text-indent: 1.8em;
    color: var(--cornsilk);
}

/* Highlight Important Words */
.epistudy6-text-block strong {
    color: var(--sunlit-clay);
    font-weight: 700;
}

/* Better spacing for last paragraph */
.epistudy6-text-block:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .epistudy6-content-wrapper {
        padding: 60px 24px;
    }

    .epistudy6-section-title {
        font-size: 2rem;
    }

    .epistudy6-text-block {
        font-size: 1.1rem;
        text-indent: 1.2em;
    }
}












/* Section Container */
.epistudy7-script-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #606c388c;
}

/* Inner Container */
.epistudy7-script-container {
  max-width: 1106px;
  background-color: var(--cornsilk);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  text-align: justify;
  line-height: 1.7;
}

/* Title Styling */
.epistudy7-script-title {
  color: var(--sunlit-clay);
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.epistudy7-script-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--copperwood);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Paragraph Styling */
.epistudy7-script-description {
  color: var(--black-forest);
  font-size: 19px;
}

/* Responsive */
@media (max-width: 768px) {
  .epistudy7-script-container {
    padding: 30px 20px;
  }

  .epistudy7-script-title {
    font-size: 1.6rem;
  }

  .epistudy7-script-description {
    font-size: 1rem;
  }
}















/* Main container with left/right padding and border */
.epistudy8-container {
  max-width: 1094px;           /* container width */
  margin: 60px auto;           /* center container horizontally */
  padding: 40px 40px;          /* top-bottom and left-right padding */
  background-color: #fff;
  border: 6.5px solid #bc6c25; /* border color */
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Heading styling */
.epistudy8-heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #2f4f4f;
  padding-bottom: 12px;
  border-bottom: 6px solid #bc6c25;
}

/* Paragraphs styling */
.epistudy8-paragraph {
  font-size: 19px;
  line-height: 1.8;        /* spacing between lines */
  text-align: justify;
  margin-bottom: 26px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .epistudy8-container {
    padding: 30px 20px;
    margin: 40px 15px;
  }

  .epistudy8-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .epistudy8-paragraph {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
}













/* MAIN CONTAINER */
.epistudy9-container {
    max-width: 1103px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* HEADER (centered, no border) */
.epistudy9-header-only {
    text-align: center;
    margin-bottom: 30px;
}

/* Header Title */
.epistudy9-header-only h1 {
    font-size: 2.8rem;
    color: var(--olive-leaf);
    margin: 0;
    font-weight: 800;
}

/* Header Subtitle */
.epistudy9-header-only p {
    font-size: 19px;
    color: var(--black-forest);
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

/* SECTION */
.epistudy9-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TEXTBOX for paragraphs */
.epistudy9-textbox {
    background-color: var(--white-snow);
    padding: 20px 25px;
    border-left: 6px solid var(--olive-leaf);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: var(--black-forest);
    text-align: justify;
    font-size: 18px;
    line-height: 1.7;
}

/* Hover effect */
.epistudy9-textbox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* INDIVIDUAL BORDER COLORS */
.epistudy9-para-intro { border-color: var(--olive-leaf); }
.epistudy9-para-vijayanagara { border-color: var(--sunlit-clay); }
.epistudy9-para-social-customs { border-color: var(--copperwood); }
.epistudy9-para-economy { border-color: var(--olive-leaf); }
.epistudy9-para-trade { border-color: var(--sunlit-clay); }
.epistudy9-para-taxes { border-color: var(--copperwood); }
.epistudy9-para-religion { border-color: var(--olive-leaf); }
.epistudy9-para-administration { border-color: var(--sunlit-clay); }
.epistudy9-para-education { border-color: var(--copperwood); }
.epistudy9-para-arts { border-color: var(--olive-leaf); }
.epistudy9-para-literature { border-color: var(--sunlit-clay); }
.epistudy9-para-conclusion {
    border-color: var(--copperwood);
    font-weight: 600;
    font-size: 1.1rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .epistudy9-container {
        padding: 30px 15px;
    }
    .epistudy9-header-only h1 {
        font-size: 2.2rem;
    }
    .epistudy9-header-only p {
        font-size: 17px;
    }
    .epistudy9-textbox {
        padding: 18px 20px;
        font-size: 16px;
    }
}










/* ==========================
   Section Styling
========================== */
.epistudy10-section {
  background-color: var(--cornsilk);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Container */
.epistudy10-container {
  max-width: 1160px;
  width: 100%;
  background: linear-gradient(135deg, var(--sunlit-clay) 0%, var(--copperwood) 100%);
  padding: 50px 60px;
  border-radius: 20px;
  border: 5px solid var(--olive-leaf);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Title */
.epistudy10-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cornsilk);
  margin-bottom: 20px;
  position: relative;
}

.epistudy10-title::after {
  content: '';
  display: block;
  width: 140px;
  height: 5px;
  background-color: var(--olive-leaf);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Intro Text */
.epistudy10-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--black-forest);
  margin-bottom: 50px;
  line-height: 1.8;
}

/* Content Items */
.epistudy10-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.epistudy10-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}

.epistudy10-item h4 {
  font-size: 1.6rem;
  color: var(--olive-leaf);
  font-weight: 700;
  margin-bottom: 10px;
  flex: 0 0 250px;
  position: relative;
}

.epistudy10-item h4::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 5px;
  width: 6px;
  height: 100%;
  background-color: var(--copperwood);
  border-radius: 3px;
}

.epistudy10-item p {
  font-size: 17px;
  color: var(--cornsilk);
  line-height: 1.7;
  background-color: rgba(0,0,0,0.05);
  padding: 15px 20px;
  border-radius: 12px;
  flex: 1;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .epistudy10-container {
    padding: 40px 30px;
  }
  .epistudy10-title {
    font-size: 2.5rem;
  }
  .epistudy10-item h4 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .epistudy10-item {
    flex-direction: column;
  }
  .epistudy10-item h4 {
    flex: 0 0 auto;
    margin-bottom: 8px;
  }
}















/* Section Wrapper */
.epistudy11-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}

/* Section Header (ABOVE container) */
.epistudy11-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--olive-leaf);
    margin-bottom: 40px;
    position: relative;
}

.epistudy11-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--copperwood);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Text Container */
.epistudy11-content-box {
    max-width: 1060px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 3px solid var(--sunlit-clay);
    border-radius: 14px;
    padding: 45px 55px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Paragraph Styling */
.epistudy11-content-box p {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 22px;
    text-align: justify;
}

/* First Letter Highlight */
.epistudy11-content-box p::first-letter {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--copperwood);
}




















/* MAIN CONTAINER */
.epistudy9-container {
    max-width: 1103px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* HEADER (centered, no border) */
.epistudy9-header-only {
    text-align: center;
    margin-bottom: 30px;
}

/* Header Title */
.epistudy9-header-only h1 {
    font-size: 2.8rem;
    color: var(--olive-leaf);
    margin: 0;
    font-weight: 800;
}

/* Header Subtitle */
.epistudy9-header-only p {
    font-size: 19px;
    color: var(--black-forest);
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

/* SECTION */
.epistudy9-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TEXTBOX for paragraphs */
.epistudy9-textbox {
    background-color: var(--white-snow);
    padding: 20px 25px;
    border-left: 6px solid var(--olive-leaf);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: var(--black-forest);
    text-align: justify;
    font-size: 18px;
    line-height: 1.7;
}

/* Hover effect */
.epistudy9-textbox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* INDIVIDUAL BORDER COLORS */
.epistudy9-para-intro { border-color: var(--olive-leaf); }
.epistudy9-para-vijayanagara { border-color: var(--sunlit-clay); }
.epistudy9-para-social-customs { border-color: var(--copperwood); }
.epistudy9-para-economy { border-color: var(--olive-leaf); }
.epistudy9-para-trade { border-color: var(--sunlit-clay); }
.epistudy9-para-taxes { border-color: var(--copperwood); }
.epistudy9-para-religion { border-color: var(--olive-leaf); }
.epistudy9-para-administration { border-color: var(--sunlit-clay); }
.epistudy9-para-education { border-color: var(--copperwood); }
.epistudy9-para-arts { border-color: var(--olive-leaf); }
.epistudy9-para-literature { border-color: var(--sunlit-clay); }
.epistudy9-para-conclusion {
    border-color: var(--copperwood);
    font-weight: 600;
    font-size: 1.1rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .epistudy9-container {
        padding: 30px 15px;
    }
    .epistudy9-header-only h1 {
        font-size: 2.2rem;
    }
    .epistudy9-header-only p {
        font-size: 17px;
    }
    .epistudy9-textbox {
        padding: 18px 20px;
        font-size: 16px;
    }
}











/* Section */
.epistudy10-section {
  max-width: 1060px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Title */
.epistudy10-title {
  font-size: 30px;
  color: #606c38ff;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.epistudy10-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background-color: #606c38ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Intro text */
.epistudy10-intro {
  font-size: 1.1rem;
  color: #283618ff;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Grid */
.epistudy10-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Cards */
.epistudy10-card {
  padding: 25px 20px;
  border-radius: 15px;
  background-color: #dda15eff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Unified heading color */
.epistudy10-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #606c38ff;
}

/* Unified paragraph color */
.epistudy10-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fefae0ff;
}

/* Hover effect */
.epistudy10-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Overlay */
.epistudy10-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  border-radius: 15px;
  pointer-events: none;
}

/* Icons */
.epistudy10-icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefae0ff;
  transition: transform 0.3s;
}

.epistudy10-card:hover .epistudy10-icon {
  transform: scale(1.2);
}















/* Section Wrapper */
.epistudy11-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}

/* Section Header (ABOVE container) */
.epistudy11-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--olive-leaf);
    margin-bottom: 40px;
    position: relative;
}

.epistudy11-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--copperwood);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Text Container */
.epistudy11-content-box {
    max-width: 1060px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 3px solid var(--sunlit-clay);
    border-radius: 14px;
    padding: 45px 55px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* Paragraph Styling */
.epistudy11-content-box p {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 22px;
    text-align: justify;
}

/* First Letter Highlight */
.epistudy11-content-box p::first-letter {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--copperwood);
}















/* contact page */











/* Main Container */
.main-container1 {
  max-width: 950px;
  width: 100%;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  position: relative;
}

/* ✅ ONE NEW CLASS — ONE SIDE BORDER */
.one-side-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 6px;
  background: var(--olive-leaf);
  border-radius: 6px;
}

/* Wrapper */
.wrapper1 {
  text-align: center;
}

/* Header Card */
.header-card1 {
  background: var(--olive-leaf);
  color: var(--cornsilk);
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.header-card1 h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.header-card1 p {
  font-size: 1.2em;
}

/* Office Info */
.office-card1 {
  background: var(--cornsilk);
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.office-card1 h2 {
  color: var(--olive-leaf);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--olive-leaf);
  display: inline-block;
  font-size: 26px;
}

.office-card1 p {
  color: var(--black-forest);
  line-height: 1.6;
}

.office-card1 a {
  color: var(--sunlit-clay);
  font-weight: bold;
  text-decoration: none;
}

.office-card1 i {
  color: var(--olive-leaf);
  margin-right: 8px;
}

/* Contacts Grid */
.contacts-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Contact Card */
.contact-card1 {
  background: var(--sunlit-clay);
  border-left: 6px solid var(--copperwood);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s ease;
}

.contact-card1:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-card1 h3 {
  color:#283618ff;
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-card1 p {
  color: #fefae0ff;

  font-size: 17px;
}

.contact-card1 i {
  color: #fefae0ff;
  margin-right: 8px;
}

/* First Contact Special */
.contact1 {
  border-left-color: var(--olive-leaf);
}

/* Responsive */
@media (max-width: 700px) {
  .header-card1 h1 {
    font-size: 2.2em;
  }
}


















/* Wrapper for centering container */
.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container */
.contact-container {
    text-align: center;
    width: 950px; /* updated width */
    padding: 30px 40px;
    background-color: var(--cornsilk); /* light background */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--olive-leaf);
   
    margin-top: 54px;
}

/* Titles */
.contact-title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--sunlit-clay);
}

.contact-subtitle {
    margin: 2px 0 15px 0;
    font-size: 0.95rem;
    color: var(--olive-leaf);
}

/* Shared Contact Info Styles */
.contact-name {
    margin: 0;
    font-size: 20px;
    color: #283618ff;
}

.contact-designation {
    margin: 5px 0;
    font-weight: bold;
    color: #606c38ff;
}

.contact-info {
    margin: 0;
    font-size: 17px;
    color: #fefae0ff;

    word-break: break-word;
}

/* Unique Contact Cards */

/* Dr. M Yesubabu */
.contact-yesubabu {
    background-color:  #dda15eff;
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: left;
    border-left: 6px solid  #283618ff;
    color: var(--cornsilk);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-yesubabu:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Dr. S Nagarajappa */
.contact-nagarajappa {
    background-color: #dda15eff;
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: left;
    border-left: 6px solid  #283618ff;
    color: var(--cornsilk);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-nagarajappa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
















/* ===== OUTER BORDERED BOX ===== */
.north-box3 {
  max-width: 900px;
  margin: 80px auto;
  padding: 35px;
  background: var(--cornsilk);
  border: 3px solid var(--olive-leaf);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* ===== TITLE STRIP ===== */
.north-title3 {
  text-align: center;
  padding: 25px 20px;
  margin-bottom: 35px;
  border: 2px dashed var(--olive-leaf);
  border-radius: 14px;
  background: #ffffff;
}

.north-title3 h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--black-forest);
  margin-bottom: 8px;
}

.north-title3 p {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--black-forest);
}

.north-title3 a {
  color: var(--sunlit-clay);
  font-weight: bold;
  text-decoration: none;
}

/* ===== PERSON CARD ===== */
.north-person3 {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: #ffffff;
  border-left: 8px solid var(--sunlit-clay);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Number Badge */
.north-person3 .num {
  width: 60px;
  height: 60px;
  border: 3px solid var(--olive-leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--olive-leaf);
}

/* Info */
.north-person3 h2 {
  margin-bottom: 6px;
  color: var(--black-forest);
}

.north-person3 p {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.north-person3 strong {
  color: var(--olive-leaf);
}

/* Responsive */
@media (max-width: 768px) {
  .north-person3 {
    flex-direction: column;
    text-align: center;
  }
}











/* ===== SECTION 4 BASE ===== */
.arabic-epigraphy4 {
  max-width: 950px;
  margin: 80px auto;
  padding: 50px 35px;
  background: linear-gradient(135deg, #fefae0, #ffffff);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===== HEADER ===== */
.epigraphy-header4 {
  text-align: center;
  padding: 30px 20px;
  background: var(--olive-leaf);
  color: var(--cornsilk);
  border-radius: 14px;
  margin-bottom: 35px;
}

.epigraphy-header4 h1 {
  font-size: 2.7rem;
  letter-spacing: 1.5px;
}

.epigraphy-header4 p {
  font-size: 1.2rem;
  margin-top: 6px;
}

/* ===== OFFICE INFO ===== */
.epigraphy-office4 {
  text-align: center;
  background: var(--cornsilk);
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 40px;
  color: var(--black-forest);
  box-shadow: inset 0 0 0 2px var(--olive-leaf);
}

.epigraphy-office4 a {
  color: var(--sunlit-clay);
  font-weight: bold;
  text-decoration: none;
}

/* ===== STAFF GRID ===== */
.epigraphy-staff4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== STAFF CARD ===== */
.staff-card4 {
  position: relative;
  padding: 25px 22px 22px;
  background: var(--sunlit-clay);
  border-radius: 16px;
  color: #fefae0ff;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card4:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

/* Index Badge */
.staff-index4 {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--olive-leaf);
  color: var(--cornsilk);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Name */
.staff-card4 h3 {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 20px;
}

/* Role */
.role4 {
  font-weight: bold;
  color: #283618ff;

  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .arabic-epigraphy4 {
    padding: 35px 20px;
  }
}
* ==========================
   Section Styling
========================== */
.epistudy10-section {
  background-color: var(--cornsilk);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Container */
.epistudy10-container {
  max-width: 1160px;
  width: 100%;
  background: linear-gradient(135deg, var(--sunlit-clay) 0%, var(--copperwood) 100%);
  padding: 50px 60px;
  border-radius: 20px;
  border: 5px solid var(--olive-leaf);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Title */
.epistudy10-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cornsilk);
  margin-bottom: 20px;
  position: relative;
}

.epistudy10-title::after {
  content: '';
  display: block;
  width: 140px;
  height: 5px;
  background-color: var(--olive-leaf);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Intro Text */
.epistudy10-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--black-forest);
  margin-bottom: 50px;
  line-height: 1.8;
}

/* Content Items */
.epistudy10-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.epistudy10-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}

.epistudy10-item h4 {
  font-size: 1.6rem;
  color: var(--olive-leaf);
  font-weight: 700;
  margin-bottom: 10px;
  flex: 0 0 250px;
  position: relative;
}

.epistudy10-item h4::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 5px;
  width: 6px;
  height: 100%;
  background-color: var(--copperwood);
  border-radius: 3px;
}

.epistudy10-item p {
  font-size: 17px;
  color: var(--cornsilk);
  line-height: 1.7;
  background-color: rgba(0,0,0,0.05);
  padding: 15px 20px;
  border-radius: 12px;
  flex: 1;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .epistudy10-container {
    padding: 40px 30px;
  }
  .epistudy10-title {
    font-size: 2.5rem;
  }
  .epistudy10-item h4 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .epistudy10-item {
    flex-direction: column;
  }
  .epistudy10-item h4 {
    flex: 0 0 auto;
    margin-bottom: 8px;
  }
}




/*  VIDEO PAGE */

/* EACH VIDEO PAGE */
.video-page {
    min-height: auto;              /* small gap fix */
    padding: 30px 0;               /* 👈 SMALL GAP BETWEEN VIDEOS */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefae0ff;
}

/* VIDEO CONTAINER */
.video-box {
    width: 80%;
    max-width: 900px;
    height: 450px;                 /* 👈 fixed height for full cover */
    background-color: var(--sunlit-clay);
    padding: 0;                    /* 👈 IMPORTANT */
    border-radius: 20px;
    border: 4px solid var(--copperwood);
    box-shadow: 0 12px 25px rgba(40, 54, 24, 0.4);
    overflow: hidden;              /* 👈 REQUIRED */
}

/* VIDEO */
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* 👈 FULL COVER */
    border-radius: 14px;
    border: none;
}


















.bx-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    font-family: "Poppins", sans-serif;
    
}

.bx-header {
    background: #283618ff;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.bx-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color:#fefae0;
}

.bx-header p {
    font-size: 17px;
    margin-top: 6px;
    opacity: 0.9;
    color:#fefae0;
}

.bx-content {
    padding: 35px 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #283618ff;
}

.bx-content p {
    margin-bottom: 18px;
}

.bx-line {
    margin: 30px 0;
    height: 2px;
    background: #e0e6f2;
}

.bx-sign {
    text-align: right;
    color: #bc6c25ff;
    font-weight: 600;
    font-size: 16px;
}
/* Media Query for tablets and mobile devices */
@media (max-width: 768px) {
    .bx-wrapper {
        max-width: 95%; /* take almost full width */
        margin: 20px auto; /* reduce margin */
        padding: 20px;
    }

    .bx-header {
        padding: 20px;
    }

    .bx-header h2 {
        font-size: 22px; /* slightly smaller */
    }

    .bx-header p {
        font-size: 15px;
    }

    .bx-content {
        padding: 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .bx-line {
        margin: 20px 0;
    }

    .bx-sign {
        font-size: 14px;
    }
}

/* Media Query for small mobiles */
@media (max-width: 480px) {
    .bx-wrapper {
        padding: 15px;
    }

    .bx-header h2 {
        font-size: 18px;
    }

    .bx-header p {
        font-size: 13px;
    }

    .bx-content {
        padding: 15px;
        font-size: 14px;
    }

    .bx-sign {
        font-size: 13px;
    }
}














.photo-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

    max-width: 1300px; /* set your desired max width */
    margin: 0 auto;     /* center the section */
    width: 100%;        /* full width up to max-width */
    box-sizing: border-box;
}


.photo-card {
    position: relative;
    width: 200px;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    transition: 0.3s ease;
}

.photo-card:hover img {
    transform: scale(1.1);
    filter: brightness(55%);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    color: #fff;
    opacity: 0;
    font-weight: 900;
    transition: 0.3s;
}

.photo-card:hover .zoom-icon {
    opacity: 1;
}

/* POPUP LIGHTBOX */
.preview-box {
    display: none; /* Hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.preview-box img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close button */
.preview-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    user-select: none;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.6);
}

.prev { left: 30px; }
.next { right: 30px; }
/* Tablets and small laptops */
@media (max-width: 1024px) {
    .photo-card {
        width: 180px;
        height: 120px;
    }

    .zoom-icon {
        font-size: 32px;
    }

    .preview-box img {
        max-width: 90%;
        max-height: 90%;
    }

    .preview-close {
        top: 20px;
        right: 30px;
        font-size: 40px;
    }

    .prev, .next {
        font-size: 40px;
        padding: 8px 12px;
    }
}

/* Tablets in portrait / large mobiles */
@media (max-width: 768px) {
    .photo-card {
        width: 150px;
        height: 110px;
    }

    .zoom-icon {
        font-size: 28px;
    }

    .preview-box img {
        max-width: 95%;
        max-height: 85%;
    }

    .prev, .next {
        font-size: 35px;
        padding: 6px 10px;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .photo-section {
        gap: 10px;
        justify-content: center;
    }

    .photo-card {
        width: 120px;
        height: 90px;
    }

    .zoom-icon {
        font-size: 24px;
    }

    .preview-box img {
        max-width: 95%;
        max-height: 80%;
    }

    .preview-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .prev, .next {
        font-size: 30px;
        padding: 5px 8px;
    }
}
/* GALLERY PAGE */





/* TITLE */
.title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 42px;
    letter-spacing: 4px;
    color: var(--olive-leaf);
}

/* GALLERY - 5 IMAGES PER ROW */
.gallery {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    justify-content: center;
    gap: 30px;
    padding-bottom: 80px;
}

/* IMAGE STYLE */
.gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 6px double var(--olive-leaf);
    transition: 0.4s ease;
}

.gallery img:hover {
    transform: translateY(-8px);
    border-color: var(--copperwood);
}

/* POPUP OVERLAY */
.popup-frame {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(40, 54, 24, 0.97);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

/* SHOW POPUP */
.popup-frame:target {
    display: flex;
}

/* POPUP CARD */
.popup-inner {
    width: 90%;
    max-width: 900px;
    background: var(--cornsilk);
    border-left: 15px solid var(--copperwood);
    border-right: 15px solid var(--olive-leaf);
    box-shadow: 0 0 0 8px var(--sunlit-clay);
    padding: 70px 60px;
    position: relative;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    text-decoration: none;
    font-size: 38px;
    font-weight: bold;
    color: var(--black-forest);
}

.close:hover {
    color: var(--copperwood);
}

/* TEXT */
.popup-inner h2 {
    font-size: 30px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--sunlit-clay);
    padding-bottom: 15px;
}

.popup-inner p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.popup-inner strong {
    color: var(--olive-leaf);
}






/* Stop body scrolling when popup is open */
body:has(.popup-frame:target) {
    overflow: hidden;
}

/* Allow popup overlay to scroll */
.popup-frame {
    overflow-y: auto;
}

/* Allow popup content to scroll inside */
.popup-inner {
    max-height: 90vh;
    overflow-y: auto;
}




/* RESPONSIVE MEDIA QUERIES */

/* Medium screens (tablets, 768px and below) */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery img {
        width: 100%;
        height: 180px;
    }

    .popup-inner {
        padding: 50px 40px;
    }
}

/* Small screens (mobile, 480px and below) */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery img {
        height: 150px;
    }

    .popup-inner {
        padding: 40px 30px;
    }

    .popup-inner h2 {
        font-size: 26px;
    }

    .popup-inner p {
        font-size: 16px;
    }
}

/* Extra small screens (very small phones, 360px and below) */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery img {
        height: 140px;
    }

    .popup-inner {
        padding: 30px 20px;
    }

    .popup-inner h2 {
        font-size: 24px;
    }

    .popup-inner p {
        font-size: 15px;
    }

    .close {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }
}









.btn-3d-gloss {
    padding: 7px 14px;
    background: linear-gradient(to bottom, #bc6c25ff, #bc6c25ff);
    color: #fefae0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0px 8px 0px #994818;
    display: inline-block;
    transition: 0.2s ease-in-out;
    margin-bottom: 15px;
    margin-top: 15px;
}
.btn-3d-gloss:hover {
    transform: translateY(-3px);
    box-shadow: 0px 11px 0px #606c38ff;
}

.btn-3d-gloss:active {
    transform: translateY(4px);
    box-shadow: 0px 3px 0px #994818;
}