    :root {
      --primary-color: #2ecc71;
      --secondary-color: #2c3e50;
      --accent-color: #e74c3c;
      --light-color: #f9f9f9;
      --dark-color: #111;
      --text-color: #333;
      --text-light: #777;
      --white: #fff;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
	
a {
  text-decoration: none !important;
  color: inherit !important;
}

    
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: var(--text-color);
      overflow-x: hidden;
    }
	
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
      cursor: pointer;
      border: none;
      font-size: 16px;
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      color: var(--white);
      box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
    }
    
    .btn-primary:hover {
      background-color: #27ae60;
      transform: translateY(-2px);
    }
    
    .btn-outline {
      border: 2px solid var(--white);
      color: var(--white);
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: var(--white);
      color: var(--primary-color);
    }
    
    .section-title {
      font-size: 32px;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      color: var(--secondary-color);
      line-height: 1.3;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--primary-color);
      margin: 15px auto;
      border-radius: 2px;
    }
    
    .box-3d {
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .box-3d:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    /* Header Styles */
    header {
      background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2530 100%);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo-container {
      display: flex;
      align-items: center;
    }
    
    .logo-container img {
      margin-right: 15px;
      height: 40px;
      width: auto;
    }
    
    .logo-container h1 {
      font-size: 18px;
      margin: 0;
      color: var(--white);
      font-weight: 500;
    }
    
    /* Navigation Styles */
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
	  color:white;
    }
    
    .nav-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-grow: 1;
    }
    
    .nav-menu li {
      margin: 0 10px;
    }
    
    .nav-menu a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      padding: 5px 10px;
      border-radius: 4px;
      transition: background 0.3s ease;
      font-size: 15px;
    }
    
    .nav-menu a:hover {
      background: rgba(255,255,255,0.2);
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
      background-color: #25D366;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
    }
    
    /* Fixed Call Button for Mobile */
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Chart.jpg');
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      color: var(--white);
      text-align: center;
    }
    
    .hero h2 {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      line-height: 1.3;
    }
    
    .hero p {
      font-size: 16px;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    /* Services Section */
    .services {
      padding: 60px 0;
      background-color: var(--light-color);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
    }
    
    .service-box {
      background: var(--white);
      padding: 25px;
      border-radius: 10px;
      border-top: 5px solid;
      text-align: center;
    }
    
    .service-box img {
      height: 70px;
      margin-bottom: 15px;
      width: auto;
    }
    
    .service-box h3 {
      margin-bottom: 15px;
      font-size: 20px;
    }
    
    .service-box p {
      color: var(--text-light);
      font-size: 14px;
    }
    
    /* About Section */
    .about {
      padding: 60px 0;
      background-color: var(--white);
    }
    
    .about-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    
    .about-content {
      flex: 1;
      min-width: 300px;
    }
    
    .about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    
    .about-image img {
      width: 70%;
      border-radius: 10px;
      max-width: 400px;
      height: auto;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .section-title {
        font-size: 28px;
      }
      
      .hero h2 {
        font-size: 28px;
      }
      
      .nav-menu li {
        margin: 0 8px;
      }
    }
    
    @media (max-width: 768px) {
      .logo-container h1 {
        font-size: 16px;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 15px 0;
        z-index: 1000;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-menu li {
        margin: 5px 0;
        text-align: center;
      }
      
      .whatsapp-btn {
        display: none;
      }
      
      .fixed-call-btn {
        display: block;
      }
      
      .hero h2 {
        font-size: 24px;
      }
      
      .hero p {
        font-size: 15px;
      }
      
      .hero-btns {
        flex-direction: column;
        align-items: center;
      }
      
      .hero-btns .btn {
        width: 100%;
        max-width: 250px;
      }
    }
    
    @media (max-width: 576px) {
      .logo-container h1 {
        display: none;
      }
      
      .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }
      
      .section-title:after {
        width: 60px;
        height: 3px;
        margin: 10px auto;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }
    }
	
	
	
	    /* Page Header */
    
    .breadcrumb {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 14px;
    }
    
    .breadcrumb li {
      margin: 0 5px;
    }
    
    .breadcrumb li:after {
      content: '/';
      margin-left: 10px;
      color: #ccc;
    }
    
    .breadcrumb li:last-child:after {
      content: '';
    }
    
    .breadcrumb a {
      color: var(--primary-color);
      text-decoration: none;
    }
    
    /* Course Categories */
    .course-categories {
      padding: 60px 0;
      background-color: var(--light-color);
    }
    
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    
    .category-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      border-bottom: 4px solid var(--primary-color);
    }
    
    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .category-img {
      height: 150px;
      overflow: hidden;
    }
    
    .category-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .category-card:hover .category-img img {
      transform: scale(1.05);
    }
    
    .category-content {
      padding: 20px;
    }
    
    .category-content h3 {
      margin-bottom: 10px;
      color: var(--secondary-color);
    }
    
    .category-content p {
      color: var(--text-light);
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    /* Popular Courses */
    .popular-courses {
      padding: 60px 0;
      background-color: var(--white);
    }
    
    .courses-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .tab-btn {
      padding: 10px 20px;
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .tab-btn.active {
      color: var(--primary-color);
      border-bottom-color: var(--primary-color);
    }
    
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .course-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border: 1px solid #eee;
    }
    
    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .course-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-color);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }
    
    .course-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    
    .course-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .course-content {
      padding: 20px;
    }
    
    .course-category {
      display: inline-block;
      background: rgba(46, 204, 113, 0.1);
      color: var(--primary-color);
      padding: 3px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .course-content h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }
    
    .course-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-size: 14px;
      color: var(--text-light);
    }
    
    .course-meta span {
      display: flex;
      align-items: center;
    }
    
    .course-meta i {
      margin-right: 5px;
    }
    
    .course-price {
      font-size: 18px;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }
    
    .course-price del {
      color: var(--text-light);
      font-weight: 400;
      margin-left: 10px;
    }
    
    /* Course Features */
    .course-features {
      padding: 60px 0;
      background-color: var(--light-color);
    }
    
    .features-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      align-items: center;
    }
    
    .features-content {
      padding-right: 30px;
    }
    
    .features-list {
      list-style: none;
    }
    
    .features-list li {
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
    }
    
    .features-list li:before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--primary-color);
    }
    
    .features-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    /* Testimonials */
    .testimonials {
      padding: 60px 0;
      background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
      color: white;
    }
    
    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .testimonial-card {
      background: rgba(255,255,255,0.1);
      padding: 30px;
      border-radius: 10px;
      margin: 15px;
      backdrop-filter: blur(5px);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
    }
    
    .testimonial-text:before,
    .testimonial-text:after {
      content: '"';
      font-size: 50px;
      color: rgba(255,255,255,0.2);
      position: absolute;
    }
    
    .testimonial-text:before {
      top: -20px;
      left: -10px;
    }
    
    .testimonial-text:after {
      bottom: -40px;
      right: -10px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }
    
    .author-info h4 {
      margin-bottom: 5px;
    }
    
    .author-info p {
      opacity: 0.8;
      font-size: 14px;
    }
    
    /* Call to Action */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/stock-market-bg.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      text-align: center;
      color: white;
    }
    
    .cta-section h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }
    
    .cta-section p {
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .section-title {
        font-size: 28px;
      }
      
      .page-header h1 {
        font-size: 32px;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 15px 0;
        z-index: 1000;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-menu li {
        margin: 5px 0;
        text-align: center;
      }
      
      .whatsapp-btn {
        display: none;
      }
      
      .fixed-call-btn {
        display: block;
      }
      
      .page-header h1 {
        font-size: 28px;
      }
      
      .features-container {
        grid-template-columns: 1fr;
      }
      
      .features-content {
        padding-right: 0;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 576px) {
      .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }
      
      .section-title:after {
        width: 60px;
        height: 3px;
        margin: 10px auto;
      }
      
      .page-header h1 {
        font-size: 24px;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .course-card {
        max-width: 350px;
        margin: 0 auto;
      }
    }
	
	
	   /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Chart.jpg');
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      color: var(--white);
      text-align: center;
    }
    
    .hero h2 {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      line-height: 1.3;
    }
    
    .hero p {
      font-size: 16px;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    /* About Section */
    .about {
      padding: 60px 0;
      background-color: var(--white);
    }
    
    .about-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    
    .about-content {
      flex: 1;
      min-width: 300px;
    }
    
    
    /* Timeline Section */
    .timeline {
      position: relative;
      padding: 60px 0;
      background-color: var(--light-color);
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background-color: var(--primary-color);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 50px;
      width: 100%;
    }
    
    .timeline-item:nth-child(odd) {
      padding-right: calc(50% + 30px);
      text-align: right;
    }
    
    .timeline-item:nth-child(even) {
      padding-left: calc(50% + 30px);
      text-align: left;
    }
    
    .timeline-content {
      padding: 20px;
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
    }
    
    .timeline-content::before {
      content: '';
      position: absolute;
      top: 20px;
      width: 20px;
      height: 20px;
      background-color: var(--white);
      transform: rotate(45deg);
      box-shadow: 5px -5px 10px rgba(0,0,0,0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
      right: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
      left: -10px;
    }
    
    .timeline-date {
      display: inline-block;
      padding: 5px 15px;
      background-color: var(--primary-color);
      color: var(--white);
      border-radius: 20px;
      font-weight: 500;
      margin-bottom: 15px;
    }
    
    .timeline-dot {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: var(--primary-color);
      border: 4px solid var(--white);
      z-index: 1;
    }
    
    /* Team Section */
    .team {
      padding: 60px 0;
      background-color: var(--white);
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .team-member {
      background-color: var(--light-color);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .team-member-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .team-member-info {
      padding: 20px;
    }
    
    .team-member-info h3 {
      margin-bottom: 5px;
      color: var(--secondary-color);
    }
    
    .team-member-info p {
      color: var(--primary-color);
      font-weight: 500;
      margin-bottom: 15px;
    }
    
    .team-social {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .team-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: var(--primary-color);
      color: var(--white);
      transition: all 0.3s ease;
    }
    
    .team-social a:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    /* Stats Section */
    .stats {
      padding: 80px 0;
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/Chart.jpg');
      background-size: cover;
      background-attachment: fixed;
      color: var(--white);
      text-align: center;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .stat-item {
      padding: 30px 20px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.2);
    }
    
    .stat-number {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--primary-color);
    }
    
    .stat-text {
      font-size: 18px;
      font-weight: 500;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .section-title {
        font-size: 28px;
      }
      
      .hero h2 {
        font-size: 28px;
      }
      
      .nav-menu li {
        margin: 0 8px;
      }
      
      .timeline::before {
        left: 30px;
      }
      
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
      }
      
      .timeline-dot {
        left: 23px;
      }
      
      .timeline-item:nth-child(odd) .timeline-content::before,
      .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
      }
    }
    
    @media (max-width: 768px) {
      .logo-container h1 {
        font-size: 16px;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 15px 0;
        z-index: 1000;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-menu li {
        margin: 5px 0;
        text-align: center;
      }
      
      .whatsapp-btn {
        display: none;
      }
      
      .fixed-call-btn {
        display: block;
      }
      
      .hero h2 {
        font-size: 24px;
      }
      
      .hero p {
        font-size: 15px;
      }
      
      .hero-btns {
        flex-direction: column;
        align-items: center;
      }
      
      .hero-btns .btn {
        width: 100%;
        max-width: 250px;
      }
    }
    
    @media (max-width: 576px) {
      .logo-container h1 {
        display: none;
      }
      
      .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }
      
      .section-title:after {
        width: 60px;
        height: 3px;
        margin: 10px auto;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .stat-number {
        font-size: 36px;
      }
      
      .stat-text {
        font-size: 16px;
      }
    }
	
	
	   /* Contact Page Specific Styles */
  
    
    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      padding: 60px 0;
    }
    
    .contact-info {
      background-color: var(--light-color);
      padding: 30px;
      border-radius: 10px;
    }
    
    .contact-info h3 {
      color: var(--secondary-color);
      margin-bottom: 20px;
      font-size: 24px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .contact-info h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .contact-details {
      margin-top: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    
    .contact-icon {
      background-color: var(--primary-color);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .contact-text h4 {
      margin-bottom: 5px;
      color: var(--secondary-color);
    }
    
    .contact-text p, .contact-text a {
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .contact-text a:hover {
      color: var(--primary-color);
    }
    
    .contact-form {
      background-color: var(--white);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--secondary-color);
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
      transition: border-color 0.3s ease;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary-color);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    .map-container {
      margin-top: 40px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .section-title {
        font-size: 28px;
      }
      
      .contact-hero h1 {
        font-size: 32px;
      }
    }
    
    @media (max-width: 768px) {
      .logo-container h1 {
        font-size: 16px;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 15px 0;
        z-index: 1000;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-menu li {
        margin: 5px 0;
        text-align: center;
      }
      
      .whatsapp-btn {
        display: none;
      }
      
      .fixed-call-btn {
        display: block;
      }
      
      .contact-hero h1 {
        font-size: 28px;
      }
      
      .contact-hero p {
        font-size: 16px;
      }
    }
    
    @media (max-width: 576px) {
      .logo-container h1 {
        display: none;
      }
      
      .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }
      
      .section-title:after {
        width: 60px;
        height: 3px;
        margin: 10px auto;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .contact-hero {
        padding: 80px 20px;
      }
      
      .contact-hero h1 {
        font-size: 24px;
      }
    }
	

/* Only show on mobile devices */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    z-index: 999;
    font-family: sans-serif;
  }

  .bottom-half {
    width: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .call {
    background-color: #f57c00; /* Orange */
    cursor: pointer;
  }

  .chat {
    background-color: #4CAF50; /* Green */
  }

  .call-menu {
    position: fixed;
    bottom: 60px;
    left: 10px;
    right: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
    font-size: 16px;
  }

  .call-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .call-menu a:last-child {
    border-bottom: none;
  }

  .call-menu a:hover {
    background-color: #f1f1f1;
  }
}

/* Hide on PC */
@media (min-width: 769px) {
  .mobile-bottom-bar,
  .call-menu {
    display: none !important;
  }
}


	
	.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  text-align: center;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
}

.caption {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

  
.gallery-grid img {
    width: 100%;
    height: 200px; /* or any height you prefer */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .gallery-grid img:hover {
    transform: scale(1.02);
  }
  .lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .lightbox-overlay.active {
    display: flex;
  }
  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    padding: 5px 12px;
  }
  
  
  
  
  
  
  .yt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  .yt-thumbnail {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .yt-thumbnail:hover {
    transform: scale(1.03);
  }

  .yt-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .yt-popup iframe {
    width: 90vw;
    height: 50vw;
    max-width: 960px;
    max-height: 540px;
    border: none;
    border-radius: 12px;
  }

  .yt-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
  }

  @media (max-width: 600px) {
    .yt-popup iframe {
      height: 60vw;
    }
  }
  
  
  .about-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 0 40px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.about-content,
.about-image {
  flex: 1;
}

.about-content {
  padding-right: 20px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

/* Image wrapper */
.image-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ✅ Responsive Fixes for Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 20px;
  }

  .about-content,
  .about-image {
    padding: 0;
  }

  .about-image {
    margin-top: 20px; /* space between content and image */
  }

  .image-wrapper img {
    height: auto; /* allow image to resize naturally */
  }
}
