/* Color variables for easy theming */
:root {
  --white-color: #fff;
  --bg-color: #fff;
  --gray-color: #ccc;
  --primary-color: #5372F0;
  --primary-color-light: #DDE4FF;
  --secondary-color: #B22485;
  --secondary-color-light: #F7DFF5;
  --tertiary-color: #B25A2B;
  --tertiary-color-light: #FFE3D2;
  --success-color: #205C20;
  --success-color-light: #D6F8D6;
  --warning-color: #856404;
  --warning-color-light: #fff3cd;
  --text-color: #000;
  --footer-bg-gradient: linear-gradient(to right, #1a1a1a, #2e2e2e);
  --footer-text-color: #ddd;
  --footer-link-hover-color: #00bcd4;
  --btn-hover-bg: #ffcc00;
}

/* Link styles */
.nav-item .nav-link {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
  color: var(--primary-color);
  outline: none;
}

/* Hero section */
.hero {
  height: 100vh;
  background-image: url("OIP.jpg");
  background-repeat: no-repeat;
  background-position: 60% 0%;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Styles */
.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 30px 10px;
  overflow: hidden;
}

.card-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.card-list .card-item {
  flex: 1 1 250px;
}

.card-list .card-link {
  display: block;
  background: var(--white-color);
  padding: 10px;
  user-select: none;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-list .card-link:active {
  cursor: grabbing;
}

.card-list .card-link:hover,
.card-list .card-link:focus {
  border-color: var(--primary-color);
  box-shadow: 0 10px 15px rgba(83, 114, 240, 0.4);
  outline: none;
}

.card-list .card-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-list .badge {
  display: inline-block;
  color: var(--primary-color);
  background: var(--primary-color-light);
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 500;
  margin: 16px 0 18px;
}

.badge-designer {
  color: var(--secondary-color);
  background: var(--secondary-color-light);
}

.badge-marketer {
  color: var(--tertiary-color);
  background: var(--tertiary-color-light);
}

.badge-gamer {
  color: var(--success-color);
  background: var(--success-color-light);
}

.badge-editor {
  color: var(--warning-color);
  background: var(--warning-color-light);
}

.card-title {
  color: var(--text-color);
  font-size: 1.19rem;
  font-weight: 600;
}

.card-button {
  height: 35px;
  width: 35px;
  color: var(--primary-color);
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transform: rotate(-45deg);
  transition: background-color 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link:hover .card-button,
.card-link:focus .card-button {
  color: var(--white-color);
  background-color: var(--primary-color);
  outline: none;
}

/* Swiper pagination */
.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: var(--primary-color);
  transition: opacity 0.3s ease;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: var(--primary-color);
  margin-top: -35px;
}

/* Responsive cards */
@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }
  .card-wrapper .swiper-slide-button {
    display: none;
  }
  .card-list .card-item {
    flex: 1 1 100%;
  }
}

/* PRICE SECTION */

#OURPRICING i {
  height: 100px;
  width: 100px;
}

/* Import Poppins font for price section */
.pricing-card {
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Featured Plan Style */
.featured {
  background: linear-gradient(135deg, #5372F0, #6e8efb);
  color: white;
}

.featured .btn-light {
  background-color: #fff;
  color: #5372F0;
  font-weight: 600;
}

.featured .btn-light:hover {
  background-color: #f0f0f0;
}

.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffc107;
  color: #000;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(10deg);
  border-radius: 5px;
  z-index: 2;
}


/* Container1 with flexible width */
.container1 {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #002ead, #0062ff);
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  height: 300px;
  color: rgb(225, 236, 71);
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}



/* vidio */
.learn-video-section {
  background: linear-gradient(to right, #f7f9fc, #e6ecf5);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  font-style: italic;
}

.video-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.video-link {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  max-width: 700px;
  transition: transform 0.3s;
}

.video-link:hover {
  transform: scale(1.02);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  overflow: hidden;
}

.video-thumbnail img:first-child {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.9;
  transition: 0.3s;
}

.video-link:hover .play-icon {
  opacity: 1;
}

.video-info {
  padding: 20px 30px;
  text-align: center;
}

.video-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.video-info p {
  color: #666;
  margin-bottom: 20px;
}

.btn-yt {
  background-color: #ff4e50;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-yt:hover {
  background-color: #e8434e;
}


/* Text content */
.text-content h2 {
  font-size: 22px;
  margin: 0;
}

.text-content span {
  font-weight: bold;
}

.text-content p {
  font-size: 14px;
  margin: 10px 0;
}

/* Button styling */
.btn {
  display: inline-block;
  background: var(--white-color);
  color: #002ead;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus {
  background: var(--btn-hover-bg);
  color: #002ead;
  outline: none;
}

/* About section timeline */

/* Contact section background */

  .glassmorphic-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .glassmorphic-form .form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
  }

  .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
    transition: all 0.3s ease-in-out;
  }

  .contact-section {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
  }

/* Responsive fixes for pricing and portfolio */
@media screen and (max-width: 990px) {
  #OURPRICING .card {
    width: calc(50% - 10px) !important;
  }
}

@media screen and (max-width: 668px) {
  #OURPRICING .card,
  #portfolio .card-wrapper {
    width: 100% !important;
  }

  #about .hire-text h2 {
    height: 70px;
    width: 70px;
  }
}

/* VIP Footer Styles */
.vip-footer {
  background: linear-gradient(to right, #1d1f27, #2e2f3e);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  font-size: 20px;
  color: #ffbdfb;
  margin-bottom: 16px;
  border-bottom: 2px solid #ff7fe5;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column p,
.footer-column a {
  color: #ddd;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.footer-bottom a:hover {
  color: #ff7fe5;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    text-align: left;
  }
}
