* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header top (logo + title) */
.header-top {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
}
h2{
	text-align:justify;
	color:#b85a20;
	margin-bottom:20px;
}


.logo {
  height: 60px;
  width: auto;
  align-items:center;
}

/* Horizontal Navbar */
/* --- Dropdown for horizontal navbar (add near your .navbar styles) --- */

.navbar { position: relative; } /* contain absolute dropdowns */

.navbar ul { position: relative; } /* keep li positioning within navbar */

/* make the li that has sub-menu position relative so its dropdown can be absolute */
.navbar li.has-sub { position: relative; }

/* dropdown hidden by default */
.navbar .dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;            /* right under the navbar */
  left: 0;              /* align with the parent li's left */
  transform: translateY(8px);
  min-width: 280px;
  z-index: 80;
}

/* panel styling (you can adjust colors to match your site) */
.navbar .dropdown-panel .panel {
  background: #264d22; /* dark green */
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  gap: 12px;
}

/* columns inside dropdown */
.navbar .dropdown-panel .col { width: 50%; }
.navbar .dropdown-panel h4 {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #cfe9c9;
}
.navbar .dropdown-panel a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
}
.navbar .dropdown-panel a:hover { text-decoration: underline; }

/* show on hover / focus (keyboard accessible) */
.navbar li.has-sub:hover > .dropdown-panel,
.navbar li.has-sub:focus-within > .dropdown-panel {
  display: block;
}

/* small responsive fix: dropdown full width on small screens */
@media (max-width: 780px) {
  .navbar .dropdown-panel {
    position: static;           /* flow with document on small screens */
    transform: none;
    min-width: auto;
    margin-top: 8px;
  }

  .navbar .dropdown-panel .panel {
    flex-direction: column;
  }

  .navbar ul {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar a { padding: 12px 16px; }
}
.navbar {
  background:#264d22; /* dark green */
}

.navbar ul {
  list-style: none;
  display: flex;           /* ye line horizontal banata hai */
  justify-content: center; /* center me rakhne ke liye */
}

.navbar li {
  margin: 0;
}

.navbar a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.navbar a:hover {
  background: #466446;
  transition: 0.3s;
}


/* Hero section */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
/* ✅ Slideshow section */
.slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  color: black;
  align-content:justify-content;
  line-height: 1.6;
}
h2{
	text-align:center;
	color:#b85a20;
	margin-bottom:20px;
}
p{
	color:black;
	line-height:1.6;
}
h4{
	text-align:left;
	font-size:30px;
}
/* ABOUT SECTION */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  background: #fafafa;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.about-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.about-heading {
  color: #b7541d;
  font-size: 22px;
  margin-bottom: 10px;
}
.about-para {
  color: #555;
  font-size: 14px;
  margin-bottom: 16px;
  align-content:center;
}
.btn{
	display:inline-block;
	padding:8px 16px;
	background:#e16817;
	color:#fff;
	border-radius:20PX;
	text-decoration:none;
	font-size:14px;
	margin-top:8px;
}

.read-more {
  display: inline-block;
  background: #c86b2b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.read-more:hover {
  background: #a24e19;
}


/* Layout: image + text side by side */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* image column | text column */
  gap: 22px;
  align-items: start;
  background: #fbfbfb;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* IMAGE styling */
.about-image {
  width: 115%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  height: auto;
  max-width: 520px;      /* prevents image from becoming too wide */
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* TEXT styling */
.about-text h2 {
  color: #b85a20;
  margin-bottom: 10px;
  font-size: 22px;
}
.about-text .intro {
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  line-height: 1.5;
}
.about-text p {
  color: black;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
  align-content:center;
}
.read-more {
  display: inline-block;
  background: #c86b2b;
  color: #fff;
  padding: 9px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
}
h3{
	text-align:center;
	color:#e16817;
	margin-bottom:20px;
}

/* Responsive: stack on small screens */
@media (max-width: 820px) {
  .about-row {
    grid-template-columns: 1fr; /* stack */
  }
  .about-image img { max-width: 100%; }
}
.cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.card {
  width: 300px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 50px;
  text-align: center;
}
.icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.card h3 { margin-bottom: 12px; color: #6b2c1f; }

/* About grid */
.about-section { padding:28px 0; background:#f7f9f7; }
.about-grid { display:grid; grid-template-columns: 2fr 1fr; gap:24px; align-items:start; }
.about-main h2 { font-size:22px; margin-bottom:10px; }
.about-main p { color:#444; line-height:1.6; margin-bottom:12px; }
.about-side .side-box { background:#fff; padding:14px; border-radius:8px; margin-bottom:14px; box-shadow:0 3px 10px rgba(0,0,0,0.04); }
.about-side h3 { color:#8a3a19; margin-bottom:6px; }

/* Footer */
.site-footer { border-top:1px solid #e6e6e6; padding:16px 0; background:#fff; margin-top:20px; text-align:center; color:#666; }

/* Responsive */
@media (max-width:900px) {
  .layout { flex-direction:column; }
  .side-nav { width:100%; display:flex; overflow:auto; padding:12px; order:2; }
  .side-nav ul { display:flex; gap:10px; }
  .side-nav a { padding:8px 12px; white-space:nowrap; }
  .hero-image img { max-height:320px; }
  .features .container { flex-direction:column; }
  .about-grid { grid-template-columns: 1fr; }
}



.footer {
  background-color: #003300;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  background-color:white;
}

.social-icons a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 10px;
  margin: 0 5px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #ff6600;
  border-color: #ff6600;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 36px;
  height: 36px;
  border-radius: 20%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}


.footer-middle {
  flex: 1;
  min-width: 250px;
}

.footer-middle h3,
.footer-right h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li {
  margin: 8px 0;
}

.footer-middle ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle ul li a:hover {
  color: #ff6600;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right p {
 color:white;
  margin: 8px 0;
}

.footer-right i {
  color: #ff6600;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #335533;
  margin-top: 30px;
  padding-top: 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: #ff6600;
  text-decoration: none;
}
.footer-bottom p{
  text-align: center;
  font-size: 14px;
  color:white;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Page Width/Content Wrapper (Optional, for better alignment) */
.content-wrapper {
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header (Logo અને Title) */
.site-header {
    padding: 15px 50px; /* તમે 50px ને content-wrapper માં પણ મૂકી શકો છો */
    border-bottom: 1px solid #eee;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px; 
    width: auto;
    margin-right: 20px;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #4B4B4B; /* ડાર્ક ગ્રે/બ્રાઉન કલર */
    letter-spacing: 1px;
}

/* નેવિગેશન બાર */
.main-nav {
    background-color: #38592A; /* ઈમેજમાં દેખાતો ડાર્ક ગ્રીન કલર */
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    padding: 0 50px; /* ડાબી બાજુનું પેડિંગ */
}

.main-nav ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.main-nav ul li:hover a {
    background-color: #2a4521; /* હોવર (hover) પર થોડો ઘાટો લીલો */
}

/* સક્રિય (Active) લિંક સ્ટાઇલ ('ABOUT US') */
.main-nav ul li.active {
    background-color: #58794A; /* સહેજ અલગ/ઓછો ઘાટો લીલો કલર */
}

.dropdown .arrow {
    font-size: 10px;
    margin-left: 5px;
}

/* Page Title Strip ('about us' lowercase) */
.side-title-strip {
    background-color: #F8F8F8; /* હળવો ગ્રે પટ્ટો */
    padding: 10px 0;
}
.side-title-strip .content-wrapper {
    padding: 0 10px; /* ડાબી બાજુનું પેડિંગ મેન્યુઅલી સેટ કરો */
}

.side-title {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    text-transform: lowercase;
    text-align: left;

}

/* મુખ્ય બેનર (Background Image અને Title Overlay) */

/* ઇમેજને ઝાંખી (faded) કરવા માટે Overlay */
.overlay-image-container::before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4); 
    /* જો શક્ય હોય તો, ઇમેજને blur કરવા માટે (બધા બ્રાઉઝર્સમાં કામ ન પણ કરે) */
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.overlay-content {
    position: relative; 
    z-index: 2; /* ટેક્સ્ટને ઓવરલેની ઉપર રાખવા માટે */
}
.main-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #444; 
    text-transform: uppercase;
}
/* About Us મુખ્ય કન્ટેન્ટ માટેનું સ્ટાઇલિંગ */
.about-content-section {
    padding: 40px 0 60px 0; /* ઉપર ઓછું, નીચે વધારે પેડિંગ */
    color: #444;
}

/* મધ્યમાં આવેલું નાનું 'About Us' શીર્ષક */
.section-title {
    font-size: 30px;
    font-weight: 500;
    color: #e96e0a; /* ફોટામાં દેખાતો ઓરેન્જ/બ્રાઉન કલર */
    text-align: center; /* વચ્ચે લાવવા */
    margin-bottom: 25px;
}

/* Paragraph સ્ટાઇલ */
.mitra-description {
    max-width: 1000px; /* લખાણની પહોળાઈ વધારી */
    margin: 0 auto 40px auto; 
    line-height: 1.8; 
    font-size: 15px; 
    font-weight: 400; /* Normal weight */
    color: #333; /* ડાર્ક ગ્રે કલર */
    
    /* 👇👇👇 લખાણને જસ્ટિફાય કરવા માટે 👇👇👇 */
    text-align: justify; 
    
    /* ડાબે-જમણે થોડું પેડિંગ આપો જેથી સાઇડમાં જગ્યા રહે */
    padding: 0 40px; 
}

/* MITRA શબ્દને બોલ્ડ કરવા માટે */
.bold-mitra {
    font-weight: 700; /* એકદમ બોલ્ડ */
}

/* Board of Management શીર્ષક સ્ટાઇલ */
.board-heading {
    font-size: 20px;
    font-weight: 500; 
    color: #e96e0a; 
    padding-bottom: 20px;
    margin-top: 20px;
    text-align: center; /* વચ્ચે લાવવા */
}
/* ===== Banner Section ===== */

/* Banner section wrapper */
.gallery-banner {
    position: relative;    /* overlay sirf yahi tak limited rahe */
    width: 100%;
    height: 500px;         /* desired banner height */
    overflow: hidden;
}

/* Banner image full width and height */
.gallery-banner img {
    width: 100%;           /* banner width fill ho */
    height: 100%;          /* banner height fill ho */
    object-fit: cover;     /* crop ho ke banner cover ho */
    display: block;
}

/* Overlay sirf banner image par */
.gallery-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-banner .overlay h2 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
}


/* ===== Optional header styling (for clarity) ===== */
.main-header {
    position: relative;  /* header apne normal flow me rahe */
    z-index: 5;
    background: #fff;
}


/* ===== Common Gallery Section ===== */
.gallery-grid {
    padding: 50px 6%;
    background: #fff;
}

.gallery-grid .container {
    display: grid;
    gap: 15px;
}

/* ===== Grid 1 (3x3 Equal Height Images) ===== */
.grid-one .container {
    grid-template-columns: repeat(3, 1fr);
	gap:1px;
}

.grid-one .container img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
	gap:1px;
}

.grid-one .container img:hover {
    transform: scale(1.05);
}

/* ===== Grid 2 (Tall Images, 3 per row) ===== */
.grid-two .container {
    grid-template-columns: repeat(3, 1fr);
}

.grid-two .container img {
    width: 100%;
    height: 400px; /* taller images */
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.grid-two .container img:hover {
    transform: scale(1.05);
}



/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .grid-one .container,
    .grid-two .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-one .container,
    .grid-two .container {
        grid-template-columns: 1fr;
    }

    .grid-one .container img,
    .grid-two .container img {
        height: auto;
    }
}

/*----------contact ki css---------*/
/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; font-family: "Helvetica Neue", Arial, sans-serif; color: #333; background: #fff; }

/* Main container */
.contact-main {
  max-width: 1180px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

/* Intro heading */
.contact-intro h2 {
  text-align: center;
  color: #d97706; /* orange */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.6px;
}

/* Cards grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 36px;
}

/* Individual card */
.card {
  border: 2px solid #a9d6b8; /* light green border */
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* no heavy shadow like screenshot */
}

/* icon circle */
.card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4b1717; /* dark brown circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* svg inside icon - white */
.card .icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* card headings */
.card h3 {
  color: #d97706; /* orange same as heading */
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* muted text (address / email / phone) */
.card .muted {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.6;
  max-width: 85%;
  text-align: center;
}

/* Map wrapper - style to match screenshot size & border */
.map-wrapper {
  margin-top: 8px;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px;
  background: #c9eef8; /* pale blue frame like screenshot */
  box-shadow: none;
}

/* iframe to be responsive and wide like screenshot */
.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 920px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .contact-main { margin: 30px 18px 50px; }
}

@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
  .card { min-height: 140px; padding: 22px; }
  .contact-intro h2 { font-size: 22px; }
  .map-wrapper iframe { height: 300px; }
}



/* ===== Impact Section Styling ===== */
.impact-section {
  background: #fff;
  padding: 60px 20px 80px;
  background-image: url('images/grass-texture-bg.jpg'); /* optional light bg if you want */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.impact-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255,255,255,0.9);
  padding: 30px 40px;
  border-radius: 8px;
}

.impact-content h2 {
  color: #d97706; /* orange */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.impact-content p {
  color: #2f3b45;
  line-height: 1.8;
  font-size: 15.5px;
  text-align: justify;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .impact-content {
    padding: 20px;
  }
  .impact-content h2 {
    font-size: 22px;
  }
  .impact-content p {
    font-size: 14.5px;
    text-align: left;
  }
}

/*---------Reseacrh css--------*/
.research-section {
  background: #fff;
  padding: 60px 20px 80px;
  background-image: url('images/grass-texture-bg.jpg'); /* optional light bg if you want */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.research-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255,255,255,0.9);
  padding: 30px 40px;
  border-radius: 8px;
}

.research-content h2 {
  color: #d97706; /* orange */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.research-content p {
  color: #2f3b45;
  line-height: 1.8;
  font-size: 15.5px;
  text-align: justify;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .research-content {
    padding: 20px;
  }
  .research-content h2 {
    font-size: 22px;
  }
  .research-content p {
    font-size: 14.5px;
    text-align: justify-content;
  }
}


/*---------community css--------*/
.community-section {
  background: #fff;
  padding: 60px 20px 80px;
  background-image: url('images/grass-texture-bg.jpg'); /* optional light bg if you want */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.community-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255,255,255,0.9);
  padding: 30px 40px;
  border-radius: 8px;
}

.community-content h2 {
  color: #d97706; /* orange */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.community-content p {
  color: #2f3b45;
  line-height: 1.8;
  font-size: 15.5px;
  text-align: justify;
  font-weight: 400;
}
/* ===== Get Involve Section Styling ===== */
.getinvolve-section {
  background: #fff;
  padding: 60px 20px 80px;
}

.getinvolve-container {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.getinvolve-container h3 {
  color: #d97706; /* orange heading */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.getinvolve-container p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.getinvolve-container h3 {
  color: #d97706;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ===== Form Styling ===== */
.getinvolve-form {
  text-align: left;
  background: #fff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  flex: 100%;
}

label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  font-size: 14px;
}

label span {
  color: red;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #d97706;
  box-shadow: 0 0 4px rgba(217,119,6,0.3);
}

/* ===== Submit Button ===== */
.btn-submit {
  margin-top: 18px;
  background-color: #0a5ad1; /* blue button */
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background-color: #0849a8;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .getinvolve-container h2 {
    font-size: 24px;
  }
  .getinvolve-container h3 {
    font-size: 20px;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .community-content {
    padding: 20px;
  }
  .community-content h2 {
    font-size: 22px;
  }
  .community-content p {
    font-size: 14.5px;
    text-align: justify-content;
  }
}

/*gyansarita */

.gyansarita-content-section {
    padding: 40px 0 60px 0; /* ઉપર ઓછું, નીચે વધારે પેડિંગ */
    color: #444;
}

/*gyansarthi*/

.gyansarthi-content-section {
    padding: 40px 0 60px 0; /* ઉપર ઓછું, નીચે વધારે પેડિંગ */
    color: #444;
	
}	
/* gyanprabodhan grid section*/

.gyanprabodhan-grid {
    padding: 30px 6%;
    background: #fff;
}

.gyanprabodhan-grid .container {
    display: grid;
    gap: 5px;
}

/* ===== Grid 1 (3x3 Equal Height Images) ===== */
.grid-one .container {
    grid-template-columns: repeat(3, 1fr);
	gap:10px;
}

.grid-one .container img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
	gap:10px;
}

.grid-one .container img:hover {
    transform: scale(1.05);
}

/*course */

.course-content-section {
    padding: 40px 0 60px 0;
    color: #444;
}

/* =====department Coordinator Section Styling css===== */
.coordinator-section {
  background-color: #fff;
  padding: 70px 20px 90px;
  background-image: url('images/grass-texture-bg.jpg'); /* optional light bg */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.coordinator-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.coordinator-card {
  display: inline-block;
  text-align: center;
}

.coordinator-card img {
  width: 240px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 18px;
}

.coordinator-card h3 {
  color: #d97706; /* orange */
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.coordinator-card p {
  color: #1f3b61; /* dark blue text */
  font-size: 16px;
  font-weight: 500;
}

/* Responsive view */
@media (max-width: 600px) {
  .coordinator-card img {
    width: 180px;
  }
  .coordinator-card h3 {
    font-size: 20px;
  }
  .coordinator-card p {
    font-size: 15px;
  }
}