﻿:root {
  --green: #7acb75;
  --yellow: #f8cf4d;
  --white: #fff;
  --dark: #222;
  --shadow: rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ========== Global Reset ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}

/* ========== Top Bar ========== */
#sy-topbar {
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  padding: 6px 0;
  z-index: 50;
}

.sy-inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sy-left a,
.sy-right a {
  color: var(--white);
  text-decoration: none;
  margin: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.sy-right a:hover {
  color: var(--yellow);
}

@media (max-width: 520px) {
  .sy-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ========== Floating Header ========== */
#sy-header {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1150px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 6px 22px var(--shadow);
  z-index: 999;
}

.sy-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
}

.sy-logo img {
  height: 70px;
  width: auto;
  display: block;
  border-radius: 55px 45px;
}

/* ========== Navigation (Desktop) ========== */
.sy-nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.sy-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

.sy-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
}

.sy-list a:hover,
.sy-list a.active {
  background: linear-gradient(45deg, var(--green), var(--yellow));
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* ========== Dropdown Menus ========== */
.sy-dd {
  position: relative;
}

.sy-dd-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--shadow);
  z-index: 1000;
  min-width: 200px;
  padding: 6px 0;
}


/* --- Stable dropdown behavior on desktop --- */
@media (min-width: 992px) {
  .sy-dd > .sy-dd-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
  }

  .sy-dd:hover > .sy-dd-menu,
  .sy-dd:focus-within > .sy-dd-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .sy-dd-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateY(5px);
    list-style:none;
  }

  .sy-dd:hover > .sy-dd-menu {
    transform: translateY(0);
  }
}

.sy-dd.open .sy-dd-menu {
  display: block;
}

.sy-dd-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}

.sy-dd-menu li a:hover {
  background: var(--green);
  color: var(--white);
}

/* ========== Mobile Styles ========== */
.sy-toggle {
  display: none;
  font-size: 24px;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

.sy-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Overlay */
#sy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 900;
}

#sy-overlay.active {
  display: block;
}


/* ========== Small Screens ========== */
@media (max-width: 480px) {
  .sy-header-inner {
    padding: 10px 18px;
  }

  .sy-logo img {
    height: 44px;
  }

  .sy-nav {
    width: 230px;
    padding: 70px 20px 20px;
  }
}


/* === FIX: Better Topbar in Mobile View === */
@media (max-width: 768px) {
  #sy-topbar {
    padding: 10px 0;
    text-align: center;
  }

  .sy-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 95%;
  }

  .sy-left,
  .sy-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 12px;
    text-align: center;
    width: 100%;
  }

  .sy-left a,
  .sy-right a {
    font-size: 13px;
    line-height: 1.4;
    color: var(--white);
    margin: 2px 4px;
  }

  .sy-left a i,
  .sy-right a i {
    font-size: 14px;
  }
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 991px) {
  .sy-toggle {
    display: block;
  }

  .sy-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    box-shadow: -8px 0 22px var(--shadow);
    transition: right 0.35s ease;
    z-index: 1001;
  }

  .sy-nav.active {
    right: 0;
  }

  .sy-nav.show-close .sy-close {
    display: flex;
  }

  /* Navigation item list layout */
  .sy-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }

  /* Main nav links */
  .sy-list a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    padding: 10px 12px 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
  }

  .sy-list a:hover,
  .sy-list a.active {
    background: linear-gradient(45deg, var(--green), var(--yellow));
    color: var(--white);
  }

  /* Dropdown menu within mobile nav */
  .sy-dd-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    margin-top: 2px;
    margin-left: 0;
    padding-left: 6px;
    border-left: 2px solid var(--green);
  }

  .sy-dd-menu li {
    width: 100%;
  }

  .sy-dd-menu li a {
    display: block;
    width: 100%;
    padding: 8px 10px 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 6px;
    transition: var(--transition);
  }

  .sy-dd-menu li a:hover {
    background: var(--green);
    color: var(--white);
  }

  /* Dropdown open spacing */
  .sy-dd.open .sy-dd-menu {
    display: block;
  }

  /* Logo adjustment */
  .sy-logo img {
    height: 48px;
  }
}

/* ========== Small Screens ========== */
@media (max-width: 480px) {
  .sy-header-inner {
    padding: 10px 18px;
  }

  .sy-logo img {
    height: 44px;
  }

  .sy-nav {
    width: 230px;
    padding: 70px 20px 25px;
  }

  .sy-list a {
    font-size: 15px;
    padding: 10px 10px 10px 12px;
  }

  .sy-dd-menu li a {
    font-size: 14px;
    padding: 8px 10px 8px 14px;
  }
}

/* ====== Floating Header ====== */
#sy-header {
  position: fixed;
  top: 60px; /* below topbar */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1150px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 6px 22px var(--shadow);
  transition: all 0.35s ease;
  z-index: 999;
}

/* ====== Sticky Floating Header ====== */
#sy-header.sticky {
  position: fixed;
  top: 10px; /* slight gap from top for floating look */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1150px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

/* ====== Inner layout ====== */
.sy-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  transition: padding 0.3s ease;
}

/* Compact layout when sticky */
#sy-header.sticky .sy-header-inner {
  padding: 10px 24px;
}

/* Logo resize */
.sy-logo img {
  height: 55px;
  transition: height 0.3s ease;
}

#sy-header.sticky .sy-logo img {
  height: 45px;
}

/* Keep topbar above header */
#sy-topbar {
  position: relative;
  z-index: 1000;
}

/* ====== Responsive Fix for Mobile ====== */
@media (max-width: 991px) {
  #sy-header {
    width: 94%;
    top: 70px;
  }

  #sy-header.sticky {
    top: 6px;
    width: 94%;
    left: 50%;
    transform: translateX(-50%);
  }

  .sy-header-inner {
    padding: 10px 20px;
  }
}



:root {
  --green: #7acb75;
  --yellow: #f8cf4d;
  --dark: #1a1a1a;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* Footer Base */
.sy-footer {
  background: linear-gradient(180deg, rgba(122, 203, 117, 0.33), rgba(248,207,77,0.05));
  padding: 60px 0 25px;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
    border-top: 1px dashed green;
}

/* Footer Container Grid */
.sy-footer-container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

/* About Section */
.sy-footer-logo img {
  width: 100px;
  margin-bottom: 12px;
    border-radius: 55px 45px;
}
.sy-footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(45deg, var(--green), var(--yellow));
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
}
.footer-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Column Headings */
.sy-footer-links h4,
.sy-footer-contact h4 {
  color: #1f3b1e;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}
.sy-footer-links h4::after,
.sy-footer-contact h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, var(--green), var(--yellow));
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

/* Links */
.sy-footer-links ul {
  list-style: none;
  padding: 0;
}
.sy-footer-links ul li {
  margin-bottom: 10px;
}
.sy-footer-links ul li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.sy-footer-links ul li a:hover {
  color: var(--green);
  padding-left: 4px;
}

/* Contact */
.sy-footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}
.sy-footer-contact i {
  color: var(--green);
  margin-right: 8px;
}

/* Social Icons */
.sy-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.sy-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px var(--shadow);
  color: var(--green);
  font-size: 15px;
  transition: var(--transition);
}
.sy-footer-socials a:hover {
  background: linear-gradient(45deg, var(--green), var(--yellow));
  color: var(--white) !important;
  transform: translateY(-3px);
}

.sy-footer-socials i{
    margin-right: 0px;
}

.sy-footer-socials a i:hover{
    color: #fafcf5 !important;
}
/* Footer Bottom */
.sy-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #444;
}
.sy-footer-copy p {
  margin: 4px 0;
}
.sy-visitor {
  font-size: 14px;
  color: #1b3318;
  margin-bottom: 6px;
}
.sy-visitor i {
  color: var(--green);
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .sy-footer-container {
    text-align: center;
  }
  .sy-footer-links h4::after,
  .sy-footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .sy-footer-socials {
    justify-content: center;
  }
  .sy-footer-logo img {
    margin: auto;
  }
}


:root {
  --green: #7acb75;
  --yellow: #f8cf4d;
  --white: #fff;
  --dark: #1a1a1a;
  --shadow: rgba(0, 0, 0, 0.2);
  --transition: all 0.6s ease-in-out;
}

/* ==== Slider Section ==== */
.sy-hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* Individual Slides */
.sy-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sy-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Overlay */
.sy-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Slide Content */
.sy-slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease;
}

.sy-slide-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sy-slide-content h1 span {
  color: var(--yellow);
}

.sy-slide-content p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #f1f1f1;
}

/* Button */
.sy-btn {
  background: linear-gradient(45deg, var(--green), var(--yellow));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.sy-btn:hover {
  background: linear-gradient(45deg, var(--yellow), var(--green));
  transform: translateY(-3px);
}

/* Arrows */
.sy-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
  z-index: 5;
}
.sy-slider-nav span {
  background: rgba(255, 255, 255, 0.8);
  color: var(--green);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.sy-slider-nav span:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

/* Dots */
.sy-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.sy-slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.sy-slider-dots span.active {
  background: var(--yellow);
  transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .sy-slide-content h1 {
    font-size: 28px;
  }
  .sy-slide-content p {
    font-size: 16px;
  }
  .sy-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}


/* Mission & Vision Styling */
#mission-vision {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.icon-circle {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

#mission-vision .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mission-vision .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  #mission-vision {
    padding: 60px 0;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* ===========================
   Why Choose SreYas Styles
=========================== */
#why-sreyas {
  font-family: "Poppins", sans-serif;
}

#why-sreyas .why-card {
  background-color: #fff;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#why-sreyas .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#why-sreyas .icon-box {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

#why-sreyas .why-card:hover .icon-box {
  transform: scale(1.1) rotate(10deg);
}

.rotate-hover {
  border-radius: 20px;
  transition: all 0.4s ease;
}

.rotate-hover:hover {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 991px) {
  #why-sreyas .why-card {
    text-align: center;
  }

  #why-sreyas .icon-box {
    margin: 0 auto 12px;
  }
}

@media (max-width: 576px) {
  #why-sreyas h2 {
    font-size: 1.6rem;
  }

  #why-sreyas .why-card {
    padding: 18px;
  }
}

/* Academics & Curriculum Section */
#academics-overview {
  font-family: "Poppins", sans-serif;
}

.timeline-wrapper {
  position: relative;
  overflow: hidden;
}

.timeline-line {
  top: 0;
  left: 28px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7acb75, #f8cf4d);
  border-radius: 4px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 30px;
}

.timeline-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-right: 20px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.timeline-icon {
  aspect-ratio: 1 / 1; /* Ensures perfect circle */
  line-height: normal; /* Prevents vertical stretch from text baseline */
  display: inline-flex; /* Keeps it centered and non-stretching */
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.1) rotate(10deg);
}

.timeline-content h5 {
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 14.5px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-step {
    margin-left: 10px;
  }

  #academics-overview h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .timeline-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .timeline-content p {
    font-size: 13.5px;
  }
}

/* ============================
   Breadcrumb Section Styling
   ============================ */
.breadcrumb-section {
    position: relative;
    min-height: 450px; /* slightly taller for full image visibility */
    background: url('../pics/C2.png') center center no-repeat;
    background-size: cover; /* fills width while maintaining proportions */
    background-position: center top; /* keeps key visual area in focus */
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* Slight overlay for clarity */
  z-index: 1;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #0a2a43;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-section h1 {
  margin-top: 16px;
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumb-section p {
  color: #fdfdfd;
  font-size: 1.15rem;
  opacity: 0.95;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .breadcrumb-section {
    min-height: 340px;
  }

  .breadcrumb-section h1 {
    font-size: 2.1rem;
  }

  .breadcrumb-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .breadcrumb-section {
    min-height: 300px;
  }

  .breadcrumb-section h1 {
    font-size: 1.7rem;
  }

  .breadcrumb-section p {
    font-size: 0.95rem;
  }
}
/* 📱 Mobile Optimization */
@media (max-width: 768px) {
    .breadcrumb-section {
        min-height: 350px; /* slightly shorter for mobile */
        background-position: left center; /* image starts from left side */
        background-size: cover; /* still fills screen without blank spaces */
    }
}



/* ============================
   SreYas Info Section Styling
   ============================ */
#sreyas-info {
  background: linear-gradient(120deg, #f8cf4d1a 0%, #7acb7515 100%);
  color: #222;
}

#sreyas-info .section-title {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

#sreyas-info .info-card {
  background: #fff;
  transition: all 0.3s ease;
  border: none;
}

#sreyas-info .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7acb75, #f8cf4d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  transition: 0.3s ease;
}

.info-card:hover .icon-circle {
  background: linear-gradient(135deg, #f8cf4d, #7acb75);
  transform: rotate(10deg);
}

#sreyas-info h3 {
  font-size: 1.9rem;
  margin-top: 8px;
}

#sreyas-info p {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  #sreyas-info h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  #sreyas-info .info-card {
    padding: 1.5rem;
  }

  #sreyas-info .icon-circle {
    width: 60px;
    height: 60px;
  }

  #sreyas-info h3 {
    font-size: 1.4rem;
  }
}

/* ============================
   SreYas Contact Section Styling
   ============================ */
#contact .form-control {
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

#contact .form-control:focus {
  border: 1px solid #7acb75;
  box-shadow: 0 0 0 0.2rem rgba(122, 203, 117, 0.25);
}

.btn.w-100 {
  background-color: #7acb75 !important;
  border: none !important;
  border-radius: 6px !important;
}

.btn.w-100:hover {
  background-color: #f8cf4d !important;
  color: #0a2a43 !important;
}

#contact h4 {
  border-left: 5px solid #7acb75;
  padding-left: 10px;
}

#contact iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 450px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  #contact .col-lg-6 {
    margin-bottom: 20px;
  }

  #contact iframe {
    height: 350px !important;
  }
}
/* Go To Top - SreYas theme */
.sy-gotop {
  position: fixed;
  right: 18px;              /* distance from right edge */
  bottom: 28px;             /* distance from bottom edge */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #7acb75 0%, #f8cf4d 100%);
  color: #0a2a43;
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(10, 42, 67, 0.12);
  cursor: pointer;
  z-index: 1100;            /* above header/overlay */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

/* Visible state */
.sy-gotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Hover & Focus */
.sy-gotop:hover,
.sy-gotop:focus {
  outline: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(10, 42, 67, 0.16);
}

/* Icon styling */
.sy-gotop-icon {
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
  color: white;
}

/* Keyboard focus visible (high contrast) */
.sy-gotop:focus-visible {
  box-shadow: 0 0 0 4px rgba(122, 203, 117, 0.18);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .sy-gotop,
  .sy-gotop.show,
  .sy-gotop:hover,
  .sy-gotop:focus {
    transition: none;
  }
}

/* Mobile adjustment (smaller screens) */
@media (max-width: 480px) {
  .sy-gotop {
    right: 12px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}


