:root {
  /* ===== Fonts ===== */
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* ===== Soft White & Dark Gray Theme ===== */
  --background-color: #f9f9f9; /* Page background */
  --background-gradient: linear-gradient(135deg, #ffffff 0%, #f2f2f2 50%, #eaeaea 100%);
  --surface-color: #ffffff; /* Cards / sections */
  --default-color: #282828; /* Main text (soft dark gray) */
  --heading-color: #1e1e1e; /* Headings (slightly darker) */
  --accent-color: #282828; /* Accent (buttons/links) */
  --accent-hover: #3a3a3a; /* Hover (lighter dark gray) */
  --contrast-color: #ffffff; /* White text for dark buttons */

  /* ===== Shadows & Borders ===== */
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  --border-color: rgba(40, 40, 40, 0.15);

  /* ===== Navigation ===== */
  --nav-color: var(--heading-color);
  --nav-hover-color: var(--accent-hover);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-color: var(--heading-color);
  --nav-dropdown-hover-color: var(--accent-hover);

  /* ===== Text ===== */
  --text-dark: #282828;
  --text-light: #555555;
  --bg-light: #ffffff;

  /* ===== Transitions ===== */
  scroll-behavior: smooth;
  --transition: all 0.3s ease;
}





/* ===== Base Styles ===== */
body {
  font-family: var(--default-font);
  color: var(--default-color);
  transition: var(--transition);
}

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


a, button {
  color: var(--accent-color);
  transition: var(--transition);
}

a:hover, button:hover {
  color: var(--accent-hover);
}

/* ===== Buttons ===== */


/* ===== Section Variants ===== */
.light-background {
  --background-color:rgba(245, 245, 245, 1);
  --surface-color:rgba(245, 245, 245, 1);
 
}

.dark-background {
  --default-color:rgba(245, 245, 245, 1);
  --heading-color: rgba(245, 245, 245, 1);
 
  --contrast-color: rgba(245, 245, 245, 1);
}


/*--------------------------------------------------------------
# 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;
}


/* PHP Email Form Messages ------------------------------ */
.php-email-form .error-message {
  display: none; /* hidden by default */
  background: #df1529; /* red for errors */
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 5px; /* smoother edges */
}

.php-email-form .sent-message {
  display: none; /* hidden by default */
  color: #ffffff;
  background: #059652; /* green for success */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 5px; /* smoother edges */
}

.php-email-form .loading {
  display: none; /* hidden by default */
  background: rgba(0, 0, 0, 0.05); /* subtle background */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 5px;
  font-weight: 500;
  color: var(--accent-color);
}

.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: transparent; /* better spinner effect */
  animation: php-email-form-loading 1s linear infinite;
}
/* class added by JS to show the message */
.php-email-form .sent-message.show {
  display: block !important;
}

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

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

/* Optional: make messages fade in/out smoothly */
.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: padding 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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





@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color:white;
   transition: none;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: white;
   transition: none;
}




/* Scroll animation setup */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger animations for child elements */
.scroll-animate.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}


/*--------------------------------------------------------------
# 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: 18px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

/* Icon beside link */
.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Remove right padding for last link */
.navmenu li:last-child a {
  padding-right: 0;
}

/* Hover and Active States */
.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
  font-weight: 400;
}

/* Underline / Active bar effect */
.navmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

/* Show underline on hover and active */
.navmenu li:hover > a::after,
.navmenu .active::after {
  width: 100%;
}
}


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  /* Burger icon styling */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Nav container */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* Mobile menu styling */
  .navmenu ul {
    display: none;                  /* Hidden by default */
    list-style: none;
    position: fixed;                 /* Fixed to stay on screen */
    top: 0;
    right: -100%;                    /* Hidden offscreen to the right */
    height: 100%;                    /* Full height */
    width: 70%;                       /* Width of mobile menu */
    padding-top: 60px;
    padding-left: 0;
    margin: 0;
    border-radius: 0 0 0 10px;       /* Rounded left edge */
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: right 0.4s ease;      /* Slide-in animation */
    z-index: 9998;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);

    /* Added to center links horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Nav links styling */
  .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;
  }

  /* Nav link icons */
  .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);
  }

  /* Hover and active link styles */
  .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);
  }

  /* Dropdowns inside mobile menu */
  .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;
  }

  /* When mobile nav is active */
  .mobile-nav-active {
    overflow: hidden;                /* Prevent background scroll */
  }

  /* Burger icon when active */
  .mobile-nav-active .mobile-nav-toggle {
    color: #000000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  /* Nav menu overlay background when active */
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: background 0.3s;
  } .header .logo h1 {
  font-size: 20px;
  }

  /* Slide-in menu */
  .mobile-nav-active .navmenu>ul {
    display: block;
    right: 0;                        /* Slide into view */
  }
     
   .header{
    padding: 7px 0 ;
   }

   .scrolled .header {
    padding: 7px 0 1px; /* top 10px, sides 0, bottom 5px */
  }

  .index-page.scrolled .header {
    padding: 7px 0 1px; /* adjust separately if needed */
  }
}




  

 
  

/* ===============================
   Simple Centered Dark Footer
   with Blurred Background
================================= */
.footer-simple {
  position: relative;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3); /* fallback overlay */
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(7px); /* glass effect for modern look */
}

/* Background Image with Blur */
.footer-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero/Picture1.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.4); /* blur + dark overlay */
  z-index: 0;
}

/* Footer content stays above the blurred background */
.footer-simple .footer-container,
.footer-simple .footer-logo,
.footer-simple .footer-links,
.footer-simple .footer-social,
.footer-simple .footer-copy {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer Logo */
.footer-simple .footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-simple .footer-links {
  margin-bottom: 20px;
}

.footer-simple .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-simple .footer-links a:hover {
  color: #fcb900; /* accent color */
}

/* Social Icons */
.footer-simple .footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-simple .footer-social a:hover {
  color: #fcb900;
  transform: translateY(-2px);
}

/* Footer Copy */
.footer-simple .footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 25px;
}

/* ===============================
   Responsive Styles
================================= */
@media (max-width: 768px) {
  .footer-simple .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-simple .footer-social {
    margin-top: 15px;
  }
}











/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: white;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);

}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}






















/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: center;
  color: var(--heading-color, #fff);
  padding: 100px 0px;
  overflow: hidden;
  z-index: 1;

  /* Background image styling (moved from JS) */
  background-image: url("../img/hero/ppt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 1s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /*backdrop-filter: blur(4px);*/
  z-index: 1;
}

/* Hero Content */
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

/* Title */
.hero-title {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

/* ===== Scroll Slide-in Animation ===== */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animation to hero elements */
.hero-badge,
.hero-title,
.hero-description,
.hero-actions,
.hero-metrics {
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

.hero-title {
  animation-name: slideInFromRight;
  animation-delay: 0.4s;
}

/* Optional: Trigger animations on scroll */
.hero.visible .hero-badge,
.hero.visible .hero-title,
.hero.visible .hero-description,
.hero.visible .hero-actions,
.hero.visible .hero-metrics {
  opacity: 1;
}

/* ===========================
   RESPONSIVE DESIGN IMPROVEMENTS
=========================== */

/* Large Laptops and Small Desktops */
@media (max-width: 1200px) {
  .hero {
    padding: 100px 40px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  
}

/* Tablets (Landscape & Portrait) */
@media (max-width: 992px) {
  .hero {
    padding: 80px 30px;
  }
  .hero .hero-content {
    max-width: 90%;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
}

/* Large Phones (e.g. iPhone Plus, mid-size Androids) */
@media (max-width: 768px) {
  .hero {
    padding: 70px 25px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    text-align: left;

    margin-bottom: 100px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-metrics {
    flex-direction: column;
    gap: 20px;
  }
}

/* Small Phones */
@media (max-width: 576px) {
  .hero {
    padding: 60px 20px;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* Very Small Phones (below 400px) */
@media (max-width: 400px) {
  .hero {
    padding: 50px 15px;
  }
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 0.9rem;
  }
}





 




















/* --------About SECTION -------- */
.about-section {
  position: relative;
  backdrop-filter: blur(6px);
  overflow: hidden;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none; /* removed the image */
  filter: none;     /* removed blur/brightness */
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}


.ab-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  z-index: 2;
}

/* -------- LEFT CONTENT -------- */
.about-content {
  flex: 1 1 45%;
  padding: 40px;
  border-radius: 10px;
  height: 500px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  animation: fadeIn 0.6s ease;
}

.about-content::-webkit-scrollbar {
  display: none;
}

.about-content .about {
  font-size: 2rem;
  font-family: var(--heading-font);
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 1.5rem;
  font-family: var(--heading-font);
  color: var(--accent-color);
  
  margin-bottom: 15px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 400;
}

/* -------- NAV -------- */
.about-tabs {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 10px;
}

.tab-buttons button {
  background: transparent;
  border: 1px solid #000; /* black border */
  color:var(--accent-color); /* black text */
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-buttons button.active,
.tab-buttons button:hover {
  background:var(--accent-color); /* black active background */
  color: #fff; /* white text */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* -------- IMAGE -------- */
.tab-image {
  width: 100%;

  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.6s ease;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.about-content, .about-tabs {
  opacity: 0;
  transition: all 1s ease-out;
}

.about-content {
  transform: translateX(-50px); /* slide from left */
}

.about-tabs {
  transform: translateX(50px); /* slide from right */
}

.about-content.visible, .about-tabs.visible {
  opacity: 1;
  transform: translateX(0);
}

/* -------- RESPONSIVE -------- */

/* Laptops / Tablets */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-tabs, .about-content, .tab-image {
    flex: 1 1 100%;
    max-width: 600px;
    width: 100%;
        height: 350px;

    
  }

  .tab-buttons {
    order: -2;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .about-content {
    order: -1;
  }

  .tab-image {
    order: 0;
    
  }

  .about-content h1 {
    font-size: 2.2rem;
  }

  .about-content h3 {
    font-size: 1.6rem;
  }

  .tab-buttons button {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    width: 100%;
    max-width: 200px;
  }

  .tab-image img {
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    width: 100%;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content h3 {
    font-size: 1.4rem;
  }

  .tab-buttons {
    gap: 12px;
    margin-bottom: 25px;
  }

  .tab-buttons button {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 200px;
  }

  .tab-image img {
    height: 300px;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-content h1 {
    font-size: 1.6rem;
  }

  .about-content h3 {
    font-size: 1.1rem;
  }

  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    order: -2;
    width: 100%;
    max-width: 350px;
  }

  .about-content {
    order: -1;
    width: 100%;
    max-width: 350px;
  }

  .tab-image {
    order: 0;
    width: 100%;
    max-width: 350px;
  }
  

  .tab-buttons button {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
  }
  

  .tab-image img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

























/* ============================================= */
/* 🌟 Services Section with Blurred Background */
/* ============================================= */
.services {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  z-index: 0;

  /* Blurred background image */
  background-image: url('../img/hero/Picture1.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Darker overlay for contrast */
  background-color: rgba(0, 0, 0, 0.6); /* stronger dark effect */
  backdrop-filter: blur(6px); /* stronger blur */
  -webkit-backdrop-filter: blur(12px);

  /* Soft shadow for depth */
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Optional floating overlay for extra darkness */
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2); /* extra subtle dark layer */
  backdrop-filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Section Title */
.services .section-title h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff; /* brighter color for contrast */
  position: relative;
  z-index: 1;

}

.services .section-title p {
  font-size: 1rem;
  text-align: center;
  color: white;
  max-width: 650px;
  margin: 0 auto 0rem auto;
  position: relative;
  z-index: 1;
   

}

/* Service Card */
.services .service-card {
  background: rgba(255, 255, 255, 0.08); /* slightly frosted glass */
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 1;
}

.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Featured Badge */
.services .service-card.featured .service-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  color: white;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 1;
}

/* Icon */
.services .service-card .service-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color, #1e6bb8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
  z-index: 1;
}

.services .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .service-card .service-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Titles & Text */
.services .service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.services .service-card p {
  font-size: 1.0.5rem;
  line-height: 1.6;
  color:white;
}

/* Responsive */
@media (max-width: 992px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .services .service-card {
    padding: 1.5rem;
  }
}



/* SIMPLE TEXT SEE MORE BUTTON */
.see-more-btn {
  margin-top: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: 0.3s;
}

.see-more-btn:hover {
  color: #ddd;
  text-decoration: underline;
}

/* FULLSCREEN POPUP */
.service-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(100px);

  z-index: 9999;
}

.service-popup.active {
  display: flex;
}

/* POPUP CONTENT BOX */
.popup-content {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  background:#111; /* SOLID, readable */
  padding: 2rem 2.5rem;
  border-radius: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  overflow-y: auto;
  animation: fadeSlide 0.4s ease;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-popup h2,
.service-popup h3,
.service-popup h4 {
  color: #ffffff !important;
}

.popup-content::-webkit-scrollbar {
  width: 0;                    /* Chrome, Safari */
}

/* CLOSE BUTTON */
/* CLOSE BUTTON FIXED INSIDE SCROLLABLE CONTENT */
.close-popup {
  position: sticky;         /* stick relative to scroll */
  top: 0;                   /* stick at the top */
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 0.2rem 0.6rem;
  float: right;
  margin-bottom: 1rem;      /* avoid overlapping content */
  text-align: center;
  transition: all 0.3s ease;
}




/* SCROLLABLE TEXT */
.popup-text {
  margin-top: 1rem;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {

  .service-popup {
  position: fixed;
  top: 30%;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(100px);

  z-index: 9999;
}
  
}




















.project-hading{
  font-family: var(--heading-font);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--accent-color); 
  position: relative;
  z-index: 1;
margin-bottom: 30px;}





.project-section {
      display: flex;
      align-items: stretch;
      justify-content: center;
      width: 100%;           /* <-- Increase width here if needed */
      max-width: 1200px;     /* <-- Max width of section */
      height: 500px;         /* <-- Increase/decrease section height here */
      background: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      position: relative;
      margin-bottom: 20px;
    }

   .project-section-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 10px; /* top & bottom padding: 80px, left & right: 20px */
  /* OR you can use margin instead:
     margin: 80px 0;  top & bottom margin */
  /* background-color: #f2f2f2; optional, section bg */
}


    /* Image section */
    .project-image {
      flex: 1.8;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: none;
      position: absolute;
      top: 0;
      left: 0;
    }

    /* Arrows on image */
    .arrows {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 10;
    }

    .arrow {
      background: white;
      color: #000;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background: var(--accent-color);
      color: #fff;
    }

    /* Text section */
    .project-content {
      flex: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--bg-light);
      position: relative;
      overflow: hidden;
      height: 100%;
      max-width: 400px; /* fixed width */
    }

    .project-meta, .project-title, .project-desc {
      transition: transform 0.5s ease, opacity 0.5s ease;
      position: relative;
    }

    .project-meta {
      text-transform: uppercase;
      margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 400;
    }

    .project-title {
      font-family: var(--heading-font);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .project-desc {
     margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 400;
    }







    /* Responsive adjustments */
@media (max-width: 1100px) {
  .project-section {
    flex-wrap: wrap;
    height: auto;
  }
  .project-image {
    flex: 2 1 100%;
    min-height: 350px; /* ensure image shows */
    position: relative;
  }
  .project-image img {
    position: relative; /* change from absolute */
    height: 100%;
  }
  .project-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 25px;
  }
  .arrows {
    bottom: 15px;
    gap: 8px;
  }
}

/* Medium screens: tablets */
@media (max-width: 900px) {
  .project-image {
    height: 400px;          /* taller image for tablets */
    position: relative;      
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    position: relative;      
  }
}

/* Small screens: mobile */
@media (max-width: 600px) {
  .project-image {
    height: 300px;          /* larger height for mobile */
    position: relative;      
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    position: relative;      
  }
}


@media (max-width: 600px) {
  .project-image {
    min-height: 200px;
  }
  .project-title {
    font-size: 1rem;
  }
  .project-desc {
    font-size: 0.85rem;
  }
  .see-all-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  .arrows {
    bottom: 10px;
    gap: 6px;
  }
}
.project-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0px 0 40px;
}

.category-btn {
  background: transparent;           /* like tab button default */
  border: 1px solid #000;           /* black border like tab button */
  color: var(--accent-color);       /* text color from accent variable */
  padding: 10px 22px;               /* custom padding */
  font-size: 0.9rem;                  /* same font size */
  border-radius: 30px;              /* custom radius */
  cursor: pointer;                  /* pointer on hover */
  transition: all 0.3s ease;        /* smooth transition */
}

.category-btn:hover,
.category-btn.active {
  background: var(--accent-color);  /* active/hover background */
  color: #fff;                      /* text turns white */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* subtle shadow like tab button */
  border-color: var(--accent-color); /* optional: match background */
}


















/* ============ Award Section (blurred background, content stays sharp) ============ */
.award-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 0;

  /* Blurred background image */
  background-image: url('../img/hero/Picture1.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Darker overlay for contrast */
  background-color: rgba(0, 0, 0, 0.6); /* stronger dark effect */
  backdrop-filter: blur(6px); /* stronger blur */
  -webkit-backdrop-filter: blur(12px);

  /* Soft shadow for depth */
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* blurred background layer (covers entire section) */
.award-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2); /* extra subtle dark layer */
  backdrop-filter: blur(100px);
  pointer-events: none;
  z-index: 0;/* allow clicks through */
}

/* make sure the inner container and its content are above the blurred layer */
.award-container {
  position: relative;
  z-index: 1;
  /* If you want the background to show THROUGH the container, set this to transparent.
     If you want the container to keep its existing background color (card look), keep your original value. */
  /* background-color: transparent; */
}




    .award-container {
      display: flex;
      align-items: center;
      max-width: none;
      width: 100%;
     /* background-color: var(--background-color);*/
      border-radius: 20px;
      overflow: hidden;
      gap: 50px;
      padding: 40px 60px;
      transition: all 0.4s ease;
      position: relative;
    }

    .award-container:hover {
      transform: translateY(-3px);
    }

    .award-image {
      flex: 1.2;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .award-image img {
      width: 100%;
      max-width: 380px;
      height: auto;
      border-radius: 15px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .award-image img:hover {
      transform: scale(1.06);
    }

    .award-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
      position: relative;
    }

    .award-content h3 {
      font-family: var(--font-heading);
      font-size: 1.7em;
      position: relative;
      display: inline-block;
      color: #ffffff;
    }

    .award-title::after {
      content: "";
      display: block;
      background-color: #ffffff;
      margin-top: 10px;
      border-radius: 2px;
      transition: width 0.4s ease;
    }

    .award-container:hover .award-title::after {
      width: 100px;
    }

    .award-desc {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #ffffff;
      max-width: 90%;
      opacity: 0.9;
    }

    /* Stats Section */
    .award-stats {
      display: flex;
      gap: 35px;
      flex-wrap: wrap;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
      line-height: 1;
      position: relative;
    }

    .stat-number::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 25px;
      height: 2px;
      background: #ffffff;
      opacity: 0.4;
    }

    .stat-text {
      font-size: 1rem;
      color: #ffffff;
      line-height: 1.5;
      max-width: 220px;
    }

    /* ============ Responsive ============ */
    @media (max-width: 950px) {
      .award-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px;
      }

      .award-image img {
        max-width: 320px;
      }

      .award-title::after {
        margin: 10px auto 0;
      }

      .award-desc {
        font-size: 0.9rem;
        max-width: 100%;
      }

      .award-stats {
        justify-content: center;
        gap: 25px;
      }

      .stat-item {
        align-items: center;
      }

      .stat-number {
        font-size: 1.8rem;
      }

      .stat-text {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 600px) {
      .award-container {
        padding: 25px;
        gap: 20px;
      }

      .award-title {
        font-size: 1.5rem;
      }

      .award-desc {
        font-size: 0.85rem;
      }

      .award-image img {
        max-width: 260px;
      }

      .stat-number {
        font-size: 1.6rem;
      }

      .stat-text {
        font-size: 0.75rem;
      }
    }








/* Client Section */
.clients-section {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.clients-section h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.clients-section p  {
  color:#000;
  font-size:1.05rem;
  margin-bottom:26px;
}

/* Slider outer */
.clients-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Viewport */
.slides-wrapper { 
  overflow: hidden; 
  width: 100%; 
  border-radius: 12px; 
}

.slides { 
  display: flex; 
  width: 100%; 
  transition: transform 0.55s cubic-bezier(.22,.9,.29,1); 
}

/* Slide Grid */
.slide { 
  min-width: 100%; 
  box-sizing: border-box; 
  padding: 18px; 
  display: grid; 
  gap: 20px; 
  justify-items: center; 
  align-items: center; 
}

/* Desktop 4x3 grid */
.slide.grid-4x3 { 
  grid-template-columns: repeat(4, 1fr); 
  grid-auto-rows: 140px; 
}

/* Tablet 3x3 grid */
.slide.grid-3x3 { 
  grid-template-columns: repeat(3, 1fr); 
  grid-auto-rows: 120px; 
}

/* Mobile vertical layout */
.slide.grid-vertical { 
  grid-template-columns: 1fr; 
  grid-auto-rows: 100px; 
  row-gap: 20px; 
}

/* Client Logo */
.client-logo { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 100%; 
  height: 100%; 
  max-width: 260px; /* slightly smaller */
  transition: transform .3s ease;
}

/* Client Image */
.client-logo img { 
  width: 80%; 
  height: 80%; 
  object-fit: contain; 
  transition: transform .3s ease; 
}

/* Hover effect - enlarge logo slightly */
.client-logo:hover img { 
  transform: scale(1.15); 
}

/* Nav Arrows */
.arrow-container { 
  display:flex; 
  justify-content:center; 
  gap:20px; 
  margin-top:20px; 
}/* Default arrow styling */
.arrow { 
  background: none; 
  border: none; 
  width: 46px; 
  height: 46px; 
  font-size: 2rem; 
  cursor: pointer; 
  transition: transform .25s ease, color .25s ease; 
  color: var(--accent-color, #000);
}

/* Hover effect */
.arrow:hover { 
  color: #000; /* only hovered arrow turns black */
}

/* Desktop: arrows on left and right sides */
@media (min-width: 901px) {
  .arrow-container {
    position: absolute;
    top: 50%;
    left: 60px;   /* space from left */
    right: 60px;  /* space from right */
    width: auto;   /* let flex handle spacing */
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    margin: 0;
    gap: 0;
  }
}


/* Dots */
.client-dots { 
  display:flex; 
  justify-content:center; 
  gap:10px; 
  margin-top:0px; 
}

.client-dots .dot { 
  width:10px; 
  height:10px; 
  border-radius:50%; 
  background:#d3d3d3; 
  cursor:pointer; 
  transition: all .28s ease; 
}

.client-dots .dot.active { 
  width:22px; 
  border-radius:12px; 
  background: var(--accent-color, #FF5722); 
}

/* Mobile: vertical single column */
@media (max-width: 600px) { 
  .slide.grid-vertical { 
    grid-template-columns: 1fr; 
    grid-auto-rows: 180px; /* bigger row for logos */
    row-gap: 25px; 
  }

  .slide.grid-vertical .client-logo { 
    max-width: 90%; /* bigger container */
    height: 100%; 
  }

  .slide.grid-vertical .client-logo img { 
    width: 100%;  /* fill container */
    height: 100%; 
  }

  .arrow-container { 
    margin-top: 20px; 
  }
  .arrow-container { 
 
  gap:80px; 
}
}
/* Hide dots on mobile */

/* Hide dots on mobile */
@media (max-width: 600px) {
  .client-dots {
    display: none;
  }
}























/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
   padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 0;

  /* Blurred background image */
  background-image: url('../img/hero/Picture1.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Darker overlay for contrast */
  background-color: rgba(0, 0, 0, 0.6); /* stronger dark effect */
  backdrop-filter: blur(6px); /* stronger blur */
  -webkit-backdrop-filter: blur(12px);

  /* Soft shadow for depth */
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 3%;
  padding: 40px 60px;
  min-height: 650px; /* desktop default */
}

.contact .contact-info-panel::before {
 content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2); /* extra subtle dark layer */
  backdrop-filter: blur(100px);
  pointer-events: none;
  z-index: 0;/* allow clicks through */
}

.contact .contact-info-panel .panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.contact .contact-info-panel .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.contact .contact-info-panel .info-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
.contact .contact-info-panel .info-card:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
  width: 50px; height: 50px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact .contact-info-panel .info-card .card-icon i { font-size: 22px; }

.contact .contact-info-panel .info-card .card-content {
  flex: 1;
}



.contact .contact-info-panel .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}
.contact .contact-info-panel .info-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact .contact-info-panel .social-section {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding-top: 30px;
}
.contact .contact-info-panel .social-section h5 {
  font-size: 16px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  font-weight: 500;
}
.contact .contact-info-panel .social-section .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.contact .contact-info-panel .social-section .social-icons .social-icon {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact .contact-info-panel .social-section .social-icons .social-icon i { font-size: 18px; }
.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background: white;
  padding: 20px 60px;
  min-height: 650px;
}

.contact .contact-form-wrapper .form-header {
  margin-bottom: 50px;
}
.contact .contact-form-wrapper .form-header h3 {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.contact .contact-form-wrapper .form-header .header-line {
  width: 60px; height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-wrapper .modern-form .form-group {
  margin-bottom: 10px;
}
.contact .contact-form-wrapper .modern-form .form-group .form-control {
  width: 100%;
  padding: 18px 25px;
  font-size: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: white;
  color: var(--default-color);
  transition: all 0.3s ease;
}
.contact .contact-form-wrapper .modern-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}
.contact .contact-form-wrapper .modern-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.contact .contact-form-wrapper .modern-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact .contact-form-wrapper .modern-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact .contact-form-wrapper .modern-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}
.contact .contact-form-wrapper .modern-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.contact .contact-form-wrapper .modern-form .submit-btn:hover::before { left: 100%; }

.card-content a {
  color: white;
}

/*--------------------------------------------------------------
Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .contact .contact-info-panel { padding: 30px 40px; min-height: auto; }
  .contact .contact-form-wrapper { padding: 30px 40px; min-height: auto; }
}

@media (max-width: 992px) {
  .contact { display: flex; flex-direction: column; gap: 30px; }
  .contact .contact-info-panel,
  .contact .contact-form-wrapper {
    min-height: auto;
    padding: 20px 30px;
  }
  .contact .contact-info-panel .info-card {
    flex-direction: column;
    gap: 15px;
  }
  .contact .contact-info-panel .info-card:hover { transform: none; }
  .contact .contact-info-panel .social-section .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-panel { padding: 15px 20px; }
  .contact .contact-form-wrapper { padding: 20px 20px; }
  .contact .contact-info-panel .info-card { padding: 15px; gap: 10px; }
  .contact .contact-form-wrapper .form-header h3 { font-size: 24px; }
}













  /* Desktop Social Bar (left) */
  .social-bar-desktop {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
  }

  /* Desktop Social Bar (left) */
.social-bar-desktop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 0 25px 25px 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: move, scale, shadow */
.social-bar-desktop a:hover {
  transform: translateX(10px) scale(1.2);
  opacity: 0.95;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}


  /* Platform Colors */
  /*.facebook  { background: var(--accent-color); }*/
  .x   { background: var(--accent-color); }
  .instagram { background: var(--accent-color); }
  .linkedin  { background: var(--accent-color); }
  
  


  /* Platform Colors - Black Versions */
  /* 
.facebook  { background: #000; }
.twitter   { background: #000; } 
.instagram { background: #000; } 
.linkedin  { background: #000; } 
.youtube   { background: #000; } 
.pinterest { background: #000; }
.github    { background: #000; } 
 */

/* ===========================
   CLEAN FLOATING SOCIAL TOGGLE
=========================== */
.social-toggle {
  display: none;
  position: fixed;
  top: 40%;
  right: 10px;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15); /* subtle border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.3rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.social-toggle:hover {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4); /* soft white border on hover */
}


/* Mobile Social Bar */
.social-bar-mobile {
  display: none;
  position: fixed;
  top: 40%;
  right: 60px;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 1000;
}

/* Mobile Social Bar */
.social-bar-mobile a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;   /* <-- prevent clicks when hidden */
}

/* Sequential animation on open */
.social-bar-mobile.open a {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;   /* <-- enable clicks when visible */
}


/* Add slight delay for each icon */
.social-bar-mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.social-bar-mobile.open a:nth-child(2) { transition-delay: 0.1s; }
.social-bar-mobile.open a:nth-child(3) { transition-delay: 0.15s; }
.social-bar-mobile.open a:nth-child(4) { transition-delay: 0.2s; }
.social-bar-mobile.open a:nth-child(5) { transition-delay: 0.25s; }

/* Icon hover */
.social-bar-mobile a:hover {
  transform: scale(1.15);
}

/* Responsive - mobile only */
@media (max-width: 768px) {
  .social-bar-desktop {
    display: none;
  }
  .social-toggle {
    display: flex;
  }
  .social-bar-mobile {
    display: flex;
  }
}





















/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* ===============================
   Creative Starter Animation
================================= */
.starter-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1e2f, #0d0d1a); /* dark gradient background */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Fade-in + Scale-up animation for content */
.starter-section .starter-content {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeScale 1.5s ease-out forwards;
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating particle circles */
.starter-section::before,
.starter-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(252, 185, 0, 0.15); /* soft yellow glow */
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: floatParticles 8s ease-in-out infinite alternate;
  filter: blur(60px);
  z-index: 0;
}

.starter-section::after {
  width: 200px;
  height: 200px;
  top: auto;
  bottom: -50px;
  right: -50px;
  background: rgba(0, 200, 255, 0.15); /* soft blue glow */
  animation-duration: 10s;
}

/* Particle floating animation */
@keyframes floatParticles {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(50px, -50px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Starter text */
.starter-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  z-index: 1;
}

.starter-section p {
  font-size: 1.2rem;
  margin-top: 15px;
  z-index: 1;
  color: rgba(255,255,255,0.8);
}

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



/* Fullscreen loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* or dark color if you prefer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader p {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 18px;
}

/* Loader bars animation */
.loader-inner {
  display: flex;
  gap: 8px;
}

.loader-bar {
  width: 10px;
  height: 40px;
  background: var(--accent-color); /* accent color, e.g., construction orange */
  animation: bounce 0.6s infinite alternate;
  border-radius: 3px;
}

.loader-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-bar:nth-child(3) {
  animation-delay: 0.4s;
}

/* Bounce animation */
@keyframes bounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}






#tabImage {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

#tabImage.loaded {
  opacity: 1;
}



#project-image {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

#project-image.loaded {
  opacity: 1;
}
