/**
* Template Name: Story
* Template URL: https://bootstrapmade.com/story-bootstrap-blog-template/
* Updated: Aug 11 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #264F0E; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #264F0E; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #264F0E; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f0f1f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    background-color: color-mix(in srgb, var(--default-color) 10%, white 15%);
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s;
  }

  .mobile-nav-toggle:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}






/* css for hero section */

/*--------------------------------------------------------------
# Hero Section with Centered Content + Animations
--------------------------------------------------------------*/

.blog-hero {
  padding: 0;
}

.blog-hero .blog-hero-slider {
  position: relative;
  overflow: hidden;
}

.blog-hero .blog-hero-item {
  position: relative;
  height: 70vh;
  min-height: 600px;
}

.blog-hero .blog-hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.blog-hero .blog-hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

/* CENTER ALL CONTENT */
.blog-hero .blog-hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 800px;
}

/* LOGO */
.hero-center-logo {
  width: 350px;
  max-width: 90%;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease-out;
}

/* Subtitle */
.hero-subtitle {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 500;
  animation: fadeUp 1.4s ease-out;
}

/* Info buttons */
.hero-info-box {
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.hero-info-btn {
  background: #1c7c3b;
  padding: 12px 20px;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  animation: fadeUp 1.6s ease-out;
}

/*---------------------------------
Animations
----------------------------------*/

@keyframes fadeIn {
  0% {opacity: 0; transform: scale(0.9);}
  100% {opacity: 1; transform: scale(1);}
}

@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/*---------------------------------
Mobile Responsive
----------------------------------*/
@media (max-width: 767px) {

  .blog-hero .blog-hero-content {
    width: 90% !important;
    top: 45% !important;
    left: 62% !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-center-logo {
    width: 240px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
  }

  .hero-info-btn {
    width: 100% !important;
    text-align: center;
    font-size: 16px !important;
  }

  .hero-info-box {
    flex-direction: column !important;
  }
}




/* css for partner */

.partners-coming-soon {
  padding: 80px 0;
  background: #f4faf4;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.partners-coming-soon h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1c7c3b;
  margin-bottom: 40px;
}

.coming-box {
  padding: 50px 20px;
  border: 2px dashed #1c7c3b;
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
}

.coming-text {
  font-size: 22px;
  font-weight: 600;
  color: #1c7c3b;
  margin-bottom: 10px;
}

.stay-tuned {
  font-size: 18px;
  color: #555;
  font-weight: 500;
  display: block;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
  .partners-coming-soon h2 {
    font-size: 28px;
  }
  .coming-text {
    font-size: 18px;
  }
  .stay-tuned {
    font-size: 16px;
  }
}


/* css for about event */

/* -------------------------------------------
   ABOUT THE EVENT – MODERN GREEN SECTION
-------------------------------------------- */

.about-event-section {
  padding: 70px 0;
  background: #f7fff9; /* soft green tint */
}

.about-event-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.about-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1d8a4f;
  margin-bottom: 10px;
}

.about-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 40px;
}

.about-event-box {
  background: #ffffff;
  padding: 40px 35px;
  border-left: 6px solid #1fa15d;   /* green border left */
  border-right: 6px solid #1fa15d;  /* green border right */
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.about-event-box p {
  margin-bottom: 22px;
  line-height: 1.8;
  color: #333;
  font-size: 16.5px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-event-box {
    padding: 25px 22px;
  }

  .about-event-box p {
    font-size: 16px;
  }
}



.about-event-section {
  padding: 60px 0;
  background: #f4fff6;
  font-family: Poppins, sans-serif;
}

.about-main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1e8a4f;
  margin-bottom: 10px;
}

.about-main-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #444;
  margin-bottom: 40px;
}

.about-slide {
  width: 70%;
  background: #264F0E;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* LEFT slide */
.about-slide.left {
  margin-left: 0;
  margin-right: auto;
}

/* RIGHT slide */
.about-slide.right {
  margin-left: auto;
  margin-right: 0;
}

/* Paragraph style */
.about-slide p {
  line-height: 1.8;
  font-size: 16px;
}


/* css for key theme to be addressed */

.meet-summit-section {
  padding: 80px 0;
  background: #f4f8f1;
  font-family: Poppins, sans-serif;
}

.meet-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

.meet-title {
  font-size: 34px;
  font-weight: 800;
  color: #264F0E;
  margin-bottom: 50px;
}

.meet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* Centers all cards */
  gap: 25px;
}
.meet-card {
  width: 300px;              /* Fixed width keeps layout perfect */
  background: linear-gradient(145deg, #264F0E, #3B7420);
  padding: 35px 25px;
  border-radius: 14px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: .3s ease;
}

.meet-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.meet-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.meet-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .meet-card {
    padding: 25px 20px;
  }

  .meet-title {
    font-size: 28px;
  }
}


/* why you should attend */


.green-slider-section {
  padding: 60px 0; /* smaller padding */
  width: 100%;
}

.green-slider-section .swiper {
  overflow: visible;
}

/* Slide container */
.green-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  padding: 15px;
  width: 50px; /* fixed width for auto slides */
}

/* Layout inside slide */
.green-inner {
  display: flex;
  gap: 15px; /* smaller gap looks better with square images */
}


/* Image box */
.green-img-box {
  flex: 1;
}

.green-img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* makes it square */
  border-radius: 12px;
  object-fit: cover;     /* keeps image centered and cropped */
}


/* Text content */
.green-content {
  flex: 1;
}

.green-content h2 {
  color: #264F0E;
  font-weight: 700;
}

.green-bold {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Slide scaling */
.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  transition: 0.6s ease;
}

.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.92);
  opacity: 0.6;
}

/* Navigation buttons */
.green-prev, .green-next {
  color: #264F0E;
  font-weight: bold;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .green-inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 85% !important;
  }

  .swiper-slide-next,
  .swiper-slide-prev {
    opacity: 0.4;
    transform: scale(0.9);
  }

  .green-img-box img {
    max-height: 180px;
  }

  @media (max-width: 768px) {
  .green-img-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: none; /* remove old max-height */
  }
}

}





 

  /* why sponsor */

/* General body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
}

/* Sponsorship Section */
.sponsor-section {
  background-color: #264F0E;
  color: #fff;
  padding: 80px 20px;
  position: relative;
}

.sponsor-section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.5rem;
}

.sponsor-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* Button Styling */
.btn-sponsor {
  background-color: #fff;
  color: #264F0E;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 35px;
  transition: 0.3s;
}

.btn-sponsor:hover {
  background-color: #1f3d0c;
  color: #fff;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sponsor-section h2 {
    font-size: 2rem;
  }
  .sponsor-section p {
    font-size: 1rem;
  }
}

/* css for award section */

/* Awards Section */
.awards-section {
  background-color: #f7f7f7;
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #264F0E;
  margin-bottom: 50px;
}

/* Award Cards */
.award-card {
  background-color: #fff;
  border-left: 5px solid #264F0E;
  padding: 20px 15px 20px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Award icon */
.award-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

/* Hover effect */
.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .award-card {
    font-size: 1rem;
    padding: 20px 15px 20px 45px;
  }
  .award-icon {
    font-size: 1.3rem;
    left: 12px;
  }
}




/* css for pricing */

/* Background and Heading */
.green-bg {
  background-color: #264F0E; /* Theme green */
  padding: 70px 20px;
}

.green-heading {
  color: #fff;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

/* Card Styling */
.green-card {
  background: #ffffff; /* Slightly darker green */
  border: 2px solid #4caf50; /* Light green accent */
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.green-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Icon color */
.text-green {
  color: #A3D56C;
}

/* Button Styling */
.btn-green {
  margin-top: 1rem;
  background: linear-gradient(to right, #4caf50, #7bc67c);
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.btn-green:hover {
  background: linear-gradient(to right, #3e8e41, #66a464);
  color: #fff;
  text-decoration: none;
}

/* Disabled button styling */
.btn-green.disabled,
.btn-green:disabled {
  background: #555;
  color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .green-card {
    padding: 1.2rem;
  }
  .btn-green {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* 
css for footer */

/* Footer Section */
.footer-section {
  background-color: #ffffff; /* White background */
  color: #264F0E; /* Theme green for text */
  padding: 80px 50px; /* More spacious */
  text-align: center;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #264F0E; /* Theme green */
  margin-bottom: 20px;
}

.footer-text {
  font-size: 1.1rem;
  margin-bottom: 10px; /* Slightly more spacing */
  color: #264F0E;
}

.footer-text strong {
  color: #264F0E;
}

/* Footer links */
.footer-link {
  color: #4CAF50; /* Light green accent */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1B3A0B; /* Darker green on hover */
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.5rem;
  }
  .footer-text {
    font-size: 1rem;
  }
}


/* css for about us */


.about-event-section {
  padding: 60px 0;
  background: #f6fff9;
  font-family: "Poppins", sans-serif;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  gap: 50px;
  margin: auto;
  padding: 0 20px;
}

/* LEFT IMAGE */
.about-left img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  object-fit: cover;
  margin-top: 80px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.about-right {
  flex: 1;
  padding-left: 30px;
  border-left: 4px solid #2da86b; /* elegant green line */
}

/* Titles */
.about-title {
  font-size: 34px;
  font-weight: 800;
  color: #1d8a4f;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

/* CONTENT BOX */
.about-text-box {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border-left: 5px solid #1fa15d;
}

.about-text-box p {
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 16.5px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-right {
    padding-left: 0;
    border-left: none;
  }

  .about-left img {
    max-width: 100%;
  }
}


/* speaker section */


.speaker-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.speaker-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #008015;
}

.designation {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.company {
  font-size: 13px;
  color: #888;
}

.linkedin {
  display: inline-block;
  margin-top: 10px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  transition: background 0.3s ease;
}

.linkedin:hover {
  background: #004182;
  color: #fff;
}





