/**
* Template Name: World Expansion - v4.9.1
* Template URL: https://bootstrapmade.com/World Expansion-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary: #920000;
  --secondary: #005bea;
  --dark: #222;
  --light: #6c757d;
  --gray: #f8f9fa;
  --transition: all 0.3s ease;
}
/* Base Responsive Settings */

html {

  font-size: 16px;
  scroll-behavior: smooth;
}

body {

  overflow-x: hidden;
  width: 100%;
  max-width: 100%;

}
/* Header Styling */
header {
  background: linear-gradient(135deg, var(--light), var(--secondary));
  color: var(--light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header .logo img {
  filter: brightness(0) invert(1); /* Invert logo color for visibility */
}

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

header .navbar ul li {
  position: relative;
}

header .navbar ul li a {
  color: var(--light);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: var(--transition);
}

header .navbar ul li a:hover {
  color: var(--gray);
  text-decoration: underline;
}

/* Dropdown Menu */
header .navbar ul li.dropdown {
  position: relative;
}

header .navbar ul li.dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

header .navbar ul li.dropdown ul li {
  width: 100%;
}

header .navbar ul li.dropdown ul li a {
  color: var(--dark);
  padding: 10px;
}

header .navbar ul li.dropdown:hover ul {
  display: block;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 991px) {
  header .navbar ul {
    display: none;
    flex-direction: column;
    background: var(--light);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  header .navbar ul li {
    width: 100%;
  }

  header .navbar ul li a {
    color: var(--dark);
    padding: 15px;
    border-bottom: 1px solid var(--gray);
  }

  header .navbar ul.active {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

/* Hero Section */
#hero {
  position: relative;
  overflow: hidden;
}

#hero .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#hero .carousel-container {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

#hero h2 {
  color: var(--light);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#hero p {
  color: var(--light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#hero .btn-get-started {
  background: var(--secondary);
  color: var(--light);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: var(--transition);
}

#hero .btn-get-started:hover {
  background: var(--primary);
  transform: scale(1.1);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(146, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #a50000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(146, 0, 0, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 91, 234, 0.3);
}

.btn-secondary:hover {
  background: #0050d0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 91, 234, 0.4);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--dark);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}




.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--dark);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary);
}

.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 180px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
}

.nav-menu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .dropdown > ul li {
  padding: 0;
}

.nav-menu .dropdown > ul a {
  padding: 10px 20px;
  display: block;
  width: 100%;
}

.nav-menu .dropdown > ul a:hover {
  background: #f8f9fa;
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(146, 0, 0, 0.8), rgba(0, 91, 234, 0.8));
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/api/placeholder/1500/400') center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.breadcrumbs li {
  font-size: 1rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs .divider {
  color: rgba(255, 255, 255, 0.6);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d9232d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e1444d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 10px;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 /* Responsive Styles */
 @media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
  .header-inner {

    padding: 15px 0;

  }
  .col-lg-6 {

    width: 100%;

    padding: 0 15px;

  }
  .team .member {

    margin-bottom: 30px;

  }

  

  .skills-content .progress {

    margin-bottom: 20px;

  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  html {

    font-size: 15px;

  }
  .section-padding {
    padding: 60px 0;
  }

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

  .hero-content p {
    font-size: 1rem;
  }
  #about {

    padding-top: 80px;

  }

  

  .footer-info, .footer-links, .footer-newsletter {

    width: 100%;

    margin-bottom: 30px;

  }

  

  .member .pic img {

    height: 250px;

  }

  .about-image {
    grid-row: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}

:root {
  --primary: #920000;
  --secondary: #005bea;
  --dark: #222;
  --light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(146, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #a50000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(146, 0, 0, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 91, 234, 0.3);
}

.btn-secondary:hover {
  background: #0050d0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 91, 234, 0.4);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--dark);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: var(--transition);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
  }

  .hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .hero-content h1 span {
    color: var(--secondary);
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }

  .hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
  }

  .hero-indicator.active {
    background: var(--primary);
  }

  /* About Section */
  .about {
    background-color: #fff;
  }

  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
  }

  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
  }

  .about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
    font-weight: 500;
  }

  .about-content p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--gray);
  }

  .about-features {
    list-style: none;
  }

  .about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .about-features li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
  }

  .about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    transform: translateY(0);
  }

  .about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
  }

  .about-image img {
    max-width: 100%;
    height: auto;  
    object-fit: cover;  
    transition: var(--transition);
  }

  /* Services Section */
  .services {
    background-color: #f9f9f9;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
  }

  .service-card:hover::before {
    height: 100%;
    opacity: 1;
  }

  .service-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
  }

  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
  }

  .service-card p {
    color: var(--gray);
    line-height: 1.6;
    transition: var(--transition);
  }

  .service-card:hover i,
  .service-card:hover h3,
  .service-card:hover p {
    color: #fff;
  }

  /* Portfolio Section */
  .portfolio {
    background-color: #fff;
  }

  .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }

  .portfolio-filter {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--gray);
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }

  .portfolio-filter.active,
  .portfolio-filter:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }

  .portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(146, 0, 0, 0.7), rgba(0, 91, 234, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
  }

  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }

  .portfolio-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: var(--transition);
    opacity: 0;
  }

  .portfolio-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
  }

  .portfolio-item:hover .portfolio-title,
  .portfolio-item:hover .portfolio-category {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
  }

  .portfolio-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition);
  }

  .portfolio-item:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
  }

  /* Modal for Portfolio Images */
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .modal-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    font-weight: 200;
    transition: var(--transition);
  }

  .modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
  }

  .modal-image {
    max-width: 100%;
    max-height: 90vh;
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Footer */
  footer {
    background: #111;
    color: #fff;
    padding-top: 80px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }

  .footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
  }

  .footer-info p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .contact-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary);
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
  }

  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
  }

  .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .footer-links li i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: #fff;
    margin-left: 5px;
  }

  .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
  }

  .credits {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .credits a {
    color: var(--secondary);
  }

  .back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
  }

  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }


/* Page Banner */
.page-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-banner-bg.jpg') center/cover no-repeat;
  padding: 120px 0 60px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.breadcrumbs .divider {
  margin: 0 10px;
  color: var(--primary);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary);
}
  /* Responsive Typography */

h1 {

  font-size: clamp(1.8rem, 4vw, 2.5rem);

}

h2 {

  font-size: clamp(1.5rem, 3.5vw, 2.2rem);

}

h3 {

  font-size: clamp(1.2rem, 3vw, 1.8rem);

}

p, li, a {

  font-size: clamp(0.95rem, 2vw, 1rem);

  line-height: 1.6;

}

/* Fluid Container */

.container {

  width: min(90%, 1200px);

  margin: 0 auto;

  padding: 0 15px;

}

/* Grid System */

.row {

  display: flex;

  flex-wrap: wrap;

  margin: 0 -15px;

}
/* Responsive Breakpoints */

@media (max-width: 1200px) {

  .section-padding {

    padding: 80px 0;

  }

  

  .member .pic img {

    height: 300px;

    object-fit: cover;

  }

}

@media (max-width: 576px) {

  html {

    font-size: 14px;

  }

  

  .container {

    width: 95%;

  }

  

  .section-title h2 {

    font-size: 1.5rem;

  }

  

  .section-title p {

    font-size: 1.2rem;

  }

  

  .member .pic img {

    height: 200px;

  }

  

  .footer-newsletter iframe {

    width: 100% !important;

  }

}

/* Responsive Team Section */

.team .row {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

  gap: 25px;

}

.team .member {

  width: 100%;

  margin: 0;

}

/* Responsive Skills Section */

.skills-content {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

  gap: 20px;

}

/* Responsive Footer */

.footer-top {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

  gap: 30px;

}

/* Image Quality Preservation */

.member .pic img, 

.tab-image img, 

.service-item img {

  backface-visibility: hidden;

  transform: translateZ(0);

  -webkit-font-smoothing: subpixel-antialiased;

}

/* Mobile Navigation Improvements */

@media (max-width: 992px) {

  .mobile-nav-toggle {

    display: block;

    position: fixed;

    right: 15px;

    top: 20px;

    z-index: 9999;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    text-align: center;

    line-height: 40px;

    font-size: 24px;

    cursor: pointer;

  }

  

  .nav-menu {

    width: 260px;

    padding: 20px 0;

    z-index: 9998;

  }

  

  .nav-menu li {

    width: 100%;

    margin: 0;

    padding: 8px 20px;

  }

  

  .nav-menu li a {

    display: block;

    width: 100%;

    padding: 8px 0;

  }

}

/* High Resolution Screens Support */

@media (min-width: 1400px) {

  .container {

    max-width: 1320px;

  }

  

  html {

    font-size: 18px;

  }

}

/* Print Media Query */

@media print {

  .nav-menu, .mobile-nav-toggle, .back-to-top, .social-links {

    display: none !important;

  }

  

  body {

    color: #000 !important;

    background: #fff !important;

  }

  

  a {

    text-decoration: underline;

  }

  

  img {

    max-width: 500px;

  }

}