  :root {
  --primary-color: #c8d82e;
  --bg-color: #000000;
  --text-color: #ffffff;
  --secondary-bg: #111111;
  --muted-text: #a0a0a0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.section-padding {
  padding: 100px 0;
}

.accent-text {
  color: var(--primary-color);
}

.accent-bg {
  background-color: var(--primary-color);
}

/* logo */
.logo-img {
    height: 80px;       
    width: auto;
}

/* Navbar */
.navbar {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 20px 0;
}

.navbar-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  color: #fff !important;
  margin: 0 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b1bf26;
  border-color: #b1bf26;
  color: #000;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  padding-top: 80px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: var(--secondary-bg);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #000;
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-img {
  border-radius: 200px 200px 0 0;
  border: 10px solid var(--secondary-bg);
}

.award-badge {
  position: absolute;
  top: 50px;
  right: -20px;
  background: #fff;
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.award-badge i {
  color: #f1c40f;
  font-size: 24px;
}

/* Services */
.service-card {
  background: var(--secondary-bg);
  border-radius: 20px;
  transition: 0.3s;
  height: 100%;
  border: 1px solid #222;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color) !important;
}

/* Portfolio */
.filter-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 5px 15px;
  position: relative;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-color);
}

.filter-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--primary-color);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.portfolio-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.portfolio-img img {
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 216, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.view-btn {
  width: 50px;
  height: 50px;
  background: #000;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Blog */
.blog-card {
  transition: 0.3s;
}

.blog-img {
  overflow: hidden;
  border-radius: 20px;
}

.blog-img img {
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.hover-accent:hover {
  color: var(--primary-color) !important;
}

/* Skills */
.skill-item {
  background: var(--secondary-bg);
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #222;
  transition: 0.3s;
}

.skill-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(200, 216, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-item:hover {
  border-color: var(--primary-color);
}

/* Tabs */
.custom-tabs {
  background: var(--secondary-bg);
  padding: 8px;
  border-radius: 10px;
  display: inline-flex;
}

.custom-tabs .nav-link {
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  transition: 0.3s;
  border: none !important;
}

.custom-tabs .nav-link.active {
  background-color: var(--primary-color) !important;
  color: #000 !important;
}

/* Timeline */
.timeline-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.timeline-item:hover .timeline-icon {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
}


/* Testimonial */
.testimonial-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

/* Brand Slider */
.brand-item {
  padding: 30px;
  background: var(--secondary-bg);
  border-radius: 15px;
  border: 1px solid #222;
  transition: 0.3s;
}

.brand-item:hover {
  border-color: var(--primary-color);
}

.brand-item i {
  color: var(--muted-text);
  transition: 0.3s;
}

.brand-item:hover i {
  color: var(--primary-color);
}

/* Forms */
.form-control {
  background: var(--secondary-bg);
  border: 1px solid #333;
  color: #fff;
  padding: 15px;
}

.form-control:focus {
  background: var(--secondary-bg);
  border-color: var(--primary-color);
  box-shadow: none;
  color: #fff;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-text {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    margin-bottom: 30px;
  }
}

/* Education & Experience icons */
.skill-icon-box {
    width: 80px;
    height: 80px;
    background: #111;           
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon-box img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

@media (max-width: 576px) {
    .skill-icon-box {
        width: 65px;
        height: 65px;
    }
}

/* Portfolio image wrapper */
.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px; 
}

/* Image */
.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(181, 195, 46, 0.35); /* lighter #B5C32E */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Icon button */
.view-btn {
    width: 55px;
    height: 55px;
    background: #B5C32E;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0.6);
    transition: transform 0.4s ease, background 0.3s ease;
}

/* Hover effects */
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card:hover .view-btn {
    transform: scale(1);
}

.view-btn:hover {
    background: #cddd3a; 
}

/* Protect hero section */
.hero-img {
    pointer-events: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

.hero-img-wrapper::after {
    content: "© Zahra Jabeen";
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Blog Modal Base */
.blog-modal .modal-content {
    background: #000;
    border-radius: 20px;
    border: 1px solid rgba(200, 216, 46, 0.2);
    box-shadow: 0 0 40px rgba(200, 216, 46, 0.15);
}

/* Header */
.blog-modal .modal-header {
    border-bottom: 1px solid rgba(200, 216, 46, 0.3);
    position: sticky;
    top: 0;
    background: #000;
    z-index: 10;
}

.blog-modal .modal-title {
    color: #C8D82E;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Body */
.blog-modal .modal-body {
    padding: 2rem;
}

/* Text Styling */
.blog-text {
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

.blog-text .lead {
    font-size: 18px;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Headings inside blog */
.blog-text h5 {
    color: #C8D82E;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

/* CTA */
.blog-cta {
    text-align: center;
}

.btn-accent {
    background: #C8D82E;
    color: #000;                  
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #000;       
    padding: 0.5rem 1.5rem;       
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-accent:hover {
    background: #C8D82E;          
    color: #000 !important;      
    border: 2px solid #000;       
    transform: translateY(-2px);  
}




