﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.gradient-bg {
  color: var(--main-blue);
  min-height: 100%;
  width: 100%;
  background: radial-gradient(ellipse at 100% 50%, #2a64a5 0%, #090650 70%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.nav-link {
  font-size: 1.2rem !important;
}

.client-logo {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--main-blue);
  border: 2px solid var(--main-blue);
  background: var(--main-white);
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--main-orange) !important;
  border: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c43e23 !important;
}

:root {
  --main-blue: #090650;
  --main-orange: #eb5336;
  --main-white: #ffffff;
}

.btn-outline-light {
  border-color: var(--main-white) !important;
  color: var(--main-white) !important;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--main-orange) !important;
  color: var(--main-white) !important;
  border-color: var(--main-orange) !important;
}

/* Top Contact Bar */
.top-contact-bar {
  background: rgba(9, 6, 80, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-phone,
.contact-email {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact-phone i,
.contact-email i {
  font-size: 0.85rem;
}

/* Navbar Styling */
.custom-navbar {
  background: rgba(9, 6, 80, 0.95) !important;
  border-radius: 2rem;
  border: 2px solid #fff;
}

.logo-container {
  width: 80px;
  height: 65px;
  margin-left: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  overflow: hidden;
}

.navbar-logo {
  width: 160px;
  height: 135px;
  object-fit: contain;
}

.contact-btn {
  border-width: 2px !important;
  font-size: 1.1rem !important;
  background: #eb5336 !important;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid #fff;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Navbar Collapse Fix */
.navbar-collapse {
  transition: height 0.35s ease;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(9, 6, 80, 0.98);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-item {
    padding: 0.5rem 0;
  }
}

/* Hero Section */
.hero-section {
  padding: 0 !important;
  padding-top: 0.8rem;
  text-align: center;
  color: var(--main-white);
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.hero-title .accent {
  color: var(--main-orange);
}
.hero-desc {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.hero-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-icon-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--main-white);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  background: rgba(9, 6, 80, 0.25);
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.hero-icon-link:hover {
  background: var(--main-orange);
  color: var(--main-white);
}
.hero-img {
  display: block;
  margin: 0 auto;
  border-radius: 1.5rem;
  width: 90%;
  height: auto;
  object-fit: cover;
}

/* Mobile Responsiveness for hero section */
@media (max-width: 992px) {
  .contact-phone,
  .contact-email {
    font-size: 0.85rem;
  }

  .contact-phone span,
  .contact-email span {
    display: inline;
  }

  .custom-navbar {
    border-radius: 1.5rem;
    margin: 0.5rem 1rem;
  }

  .navbar-logo {
    width: 120px;
    height: 100px;
  }

  .logo-container {
    width: 60px;
    height: 50px;
    margin-left: 10px;
    margin-right: 5px;
  }

  .nav-link {
    font-size: 1rem !important;
    padding: 0.5rem 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .hero-icon-link {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    justify-content: center;
  }

  .hero-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .custom-navbar {
    border-radius: 1rem;
    margin: 0.5rem 0.5rem;
  }

  .contact-btn {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .hero-icons {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-icon-link {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .top-contact-bar {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .contact-phone,
  .contact-email {
    font-size: 0.75rem;
  }

  .contact-phone {
    margin-right: 0 !important;
  }

  .navbar-logo {
    width: 90px;
    height: 75px;
  }

  .logo-container {
    width: 50px;
    height: 40px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .custom-navbar {
    border-radius: 0.8rem;
    border-width: 1px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .hero-icon-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-img {
    border-radius: 1rem;
    width: 100%;
  }

  .contact-btn {
    padding: 0.5rem 1rem !important;
  }
}
/* services section style */
.services-section {
  /* Inherits padding from gradient-bg */
  padding: 60px 0;
}

.sections-title {
  color: var(--main-white);
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--main-orange), #c43e23);
  z-index: 1;
}

.service-section {
  position: relative;
  margin-bottom: 80px;
}

.service-section:last-child {
  margin-bottom: 0;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--main-orange);
  border-radius: 50%;
  margin-right: 30px;
  border: 3px solid var(--main-white);
  box-shadow: 0 0 20px rgba(235, 83, 54, 0.5);
}

.service-title {
  color: var(--main-white);
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.service-description {
  color: #cccccc;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 20px 0 15px 50px;
  max-width: 900px;
}

.service-cards {
  margin-left: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 250px;
}

.card-content {
  padding-top: 30px;
  padding-bottom: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 4rem;
  color: var(--main-orange);
  margin-bottom: 20px;
  transition: color 0.3s ease;
  z-index: 4;
  position: relative;
}

.card-title {
  color: var(--main-orange) !important;
  font-size: 1.25rem;
  font-weight: 800;
  z-index: 4;
  position: relative;
  line-height: 1.4;
  padding: 0 10px;
}

.card-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--main-orange);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  z-index: 4;
}

.service-card:hover .card-arrow {
  transform: rotate(180deg);
}

/* Updated hover effect - sliding orange background */
.card-scroll {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--main-orange), #c43e23);
  border-radius: 15px;
  width: 100%;
  height: 70%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card:hover .card-scroll {
  transform: translateY(0%);
}

.service-card:hover .card-icon {
  color: var(--main-white);
}

/* Updated hover effect - sliding orange background */
.hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--main-orange), #c43e23);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 70%;
  transform: translateY(-100%);
  transition: transform 0.9s ease;
  z-index: 3;
}

.service-card:hover .hover-content {
  transform: translateY(0%);
}

.service-card:hover .card-icon {
  color: var(--main-white);
}

.hover-text {
  color: var(--main-white);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 5px;
}

.default-content {
  transition: opacity 0.3s ease;
}
/* Services Section Responsive Design */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .service-title {
    font-size: 2.2rem;
  }

  .service-description {
    font-size: 1.1rem;
    margin-left: 40px;
  }

  .service-cards {
    margin-left: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-card {
    height: 230px;
  }

  .card-icon img {
    width: 120px !important;
    height: 120px !important;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .hover-text {
    font-size: 0.95rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .sections-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .gradient-bg {
    padding: 60px 0;
  }

  .service-title {
    font-size: 1.9rem;
  }

  .service-description {
    font-size: 1rem;
    margin-left: 30px;
    line-height: 1.6;
  }

  .service-cards {
    margin-left: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    height: 210px;
  }

  .card-content {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .card-icon img {
    width: 100px !important;
    height: 100px !important;
  }

  .card-title {
    font-size: 1rem;
  }

  .hover-text {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .timeline-line {
    left: 10px;
  }

  .timeline-dot {
    margin-right: 20px;
    width: 18px;
    height: 18px;
  }

  .card-arrow {
    font-size: 1rem;
    top: 10px;
    right: 10px;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .sections-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .gradient-bg {
    padding: 50px 0;
    min-height:85%;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-description {
    font-size: 1.05rem;
    margin-left: 20px;
    margin-right: 10px;
  }

  .service-cards {
    margin-left: 20px;
    margin-right: 10px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    height: 210px;
  }

  .card-content {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .card-icon {
    margin-bottom: 15px;
  }

  .card-icon img {
    width: 90px !important;
    height: 90px !important;
  }

  .card-title {
    font-size: 1.05rem;
    padding: 0 5px;
  }

  .hover-content {
    padding: 25px 15px;
  }

  .hover-text {
    font-size: 0.95rem;
  }

  .timeline-line {
    left: 8px;
    width: 2px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
    margin-right: 15px;
  }

  .service-section {
    margin-bottom: 60px;
  }

  .card-arrow {
    font-size: 0.9rem;
    top: 8px;
    right: 8px;
  }
}

/* Ipad frames style */
.ipad-frames-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 600px;
}
.ipad-frame {
  position: absolute;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 30px;
}
.ipad-frame-1 {
  top: 0;
  left: 0;
  z-index: 1;
}
.ipad-frame-2 {
  top: -40px;
  left: 250px;
  z-index: 2;
}
.ipad-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ipad-screen-content {
  position: absolute;
  top: 3.6%;
  left: 2%;
  width: 95%;
  height: 93%;
  overflow: hidden;
  border-radius: 1rem;
}
.ipad-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* About Section Text Styling */
.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* About Section Responsive Design */

/* Desktop - maintain current design */
@media (min-width: 992px) {
  .lead {
    font-size: 1.25rem;
  }
}

/* Tablet (781px - 991px) */
@media screen and (min-width: 781px) and (max-width: 991px) {
  .lead {
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .ipad-frames-container {
    height: 450px;
    max-width: 700px;
  }

  .ipad-frame {
    max-width: 450px;
    margin-top: 20px;
  }

  .ipad-frame-2 {
    top: -30px;
    left: 160px;
  }

  .ipad-screen-content {
    top: 3.6%;
    left: 3%;
    width: 94%;
    height: 93%;
  }
}

/* Mobile (577px - 780px) */
@media screen and (min-width: 577px) and (max-width: 780px) {
  .lead {
    font-size: 1.1rem;
    line-height: 1.65;
  }

  .ipad-frame-1 {
    display: none;
  }

  .ipad-frame-2 {
    width: 100%;
    max-width: 500px;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }

  .ipad-frames-container {
    height: auto;
    max-width: 100%;
  }

  .ipad-screen-content {
    position: absolute;
    top: 3.6%;
    left: 3%;
    width: 94%;
    height: 93%;
    overflow: hidden;
    border-radius: 1rem;
  }
}

/* Small Mobile (576px and below) */
@media screen and (max-width: 576px) {
  .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .ipad-frame-1 {
    display: none;
  }

  .ipad-frame-2 {
    width: 100%;
    max-width: 100%;
    height: auto;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
  }

  .ipad-frames-container {
    height: auto;
    max-width: 100%;
    padding: 0 10px;
  }

  .ipad-screen-content {
    position: absolute;
    top: 3.6%;
    left: 3%;
    width: 94%;
    height: 93%;
    overflow: hidden;
    border-radius: 0.8rem;
  }
}

/* Customer review cards style*/
.review-slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
.review-cards-row {
  display: flex;
  transition: transform 1.1s ease-in-out;
  gap: 1rem;
  padding: 0 1rem;
}
.review-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  min-width: 100%;
  flex-shrink: 0;
}
.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  min-width: 260px;
  max-width: 350px;
  position: relative;
  margin-bottom: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-stars {
  color: var(--main-orange);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.review-text {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  min-height: 60px;
}
.review-readmore {
  color: #eb5336;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.98rem;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  margin-top: auto;
}
.reviewer-name {
  color: #eb5336;
  font-weight: 700;
}
.review-date {
  color: #fff;
  font-weight: 500;
  opacity: 0.85;
}
.review-source {
  color: #00e676;
  font-weight: 700;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #eb5336;
  color: #181a2a;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-nav:hover {
  background: #eb5336;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.slider-nav.prev {
  left: 10px;
}
.slider-nav.next {
  right: 10px;
}
.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}
.slider-nav.hidden {
  display: none;
}

/* Slider Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}
.indicator.active {
  background: #eb5336;
}
/* Star rating styles */
#starRating i {
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 3rem;
}
#starRating i.active,
#starRating i:hover {
  color: var(--main-orange);
}
/* Customer Reviews - Mobile Responsiveness */
@media (max-width: 768px) {
  .review-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .slider-nav.prev {
    left: 8px;
  }

  .slider-nav.next {
    right: 8px;
  }
}

@media (max-width: 576px) {
  .review-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .review-card {
    min-width: 250px;
    max-width: 250px;
  }

  .review-cards-row {
    padding: 0 0.5rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-nav.prev {
    left: 5px;
  }

  .slider-nav.next {
    right: 5px;
  }
}

/* Contact Forms Section */
.contact-forms-container {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.contact-form-left,
.contact-form-right {
  flex: 1;
  min-width: 0;
}

.form-wrapper {
  background-color: rgba(9, 6, 80, 0.1);
  border: 1px solid white;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.form-title {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* Contact Forms - Responsive Design */

/* Tablet/Small Desktop (900px and below) - Stack vertically */
@media (max-width: 900px) {
  .contact-forms-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-left,
  .contact-form-right {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .form-wrapper {
    padding: 1.8rem;
  }

  .form-title {
    font-size: 1.7rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .contact-forms-container {
    gap: 1.8rem;
  }

  .form-wrapper {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .contact-forms-container {
    gap: 1.5rem;
  }

  .contact-form-left,
  .contact-form-right {
    max-width: 100%;
  }

  .form-wrapper {
    padding: 1.3rem;
    border-radius: 0.8rem;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

/*  FAQs section styles */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  space-y: 20px;
}
.faq-category {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;

  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-category:hover {
  border-color: var(--main-orange);
  box-shadow: 0 5px 20px rgba(235, 83, 54, 0.2);
}
.faq-category-header {
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--main-blue) 0%, #0a0a2a 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-category-header:hover {
  background: linear-gradient(135deg, #0b0758 0%, #0c0c35 100%);
}
.faq-category-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--main-white);
  margin: 0;
}
.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--main-orange);
  transition: transform 0.3s ease;
}
.faq-category.active .faq-toggle-icon {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-category.active .faq-content {
  max-height: 2000px;
}
.faq-item {
  border-bottom: 1px solid rgba(235, 83, 54, 0.2);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  padding: 20px 30px;
  background: rgba(9, 6, 80, 0.6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover {
  background: rgba(9, 6, 80, 0.8);
}
.faq-question-text {
  font-size: 1.4rem;
  color: var(--main-orange);
  font-weight: 700;
  margin: 0;
}
.faq-question-icon {
  font-size: 1.2rem;
  color: var(--main-orange);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 20px 30px;
  background: rgba(9, 6, 80, 0.4);
  color: var(--main-white);
  line-height: 1.6;
  font-size: 1.2rem;
}

/* Mobile Responsiveness for FAQs section */
@media (max-width: 768px) {
  .faq-category-header,
  .faq-question,
  .faq-answer-content {
    padding: 15px 20px;
  }

  .faq-category-title {
    font-size: 1.3rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }
}

/* Social media links in the footer */

.icon-wrapper {
  position: relative;
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.inner-circle,
.inner-square {
  position: absolute;
  border: 1px solid var(--main-orange);
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
}

.inner-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border-color: rgba(235, 83, 54, 0.4);
}

.inner-square {
  width: 65px;
  height: 65px;
  transform: rotate(45deg);
  border-color: var(--main-orange);
}

.icon-font {
  font-size: 25px;
  color: var(--main-white);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.icon-wrapper:hover .inner-circle {
  transform: scale(1.1) rotate(15deg);
}

.icon-wrapper:hover .inner-square {
  transform: rotate(90deg) scale(1.1);
}

.instagram-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Tablet/iPad Mockup with Image Frame */
.tablet-mockup {
  background-image: url("/images/tabFrame.svg"); /* Replace with your tablet frame image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  height: 800px; /* Adjust based on your tablet frame image proportions */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider wrapper inside tablet screen */
.tablet-screen .slider-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tablet-screen .slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.tablet-screen .slider-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Remove the pseudo-elements that created the HTML-based frame */
.tablet-mockup::before,
.tablet-mockup::after {
  display: none;
}

.tablet-screen {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 15px 12px;
  /* Adjust these values based on your tablet frame image's screen area */
  width: 88%; /* Percentage of the tablet frame width */
  height: 88%; /* Percentage of the tablet frame height */
  max-width: 900px;
  max-height: 620px;
  display: flex;
  flex-direction: column;
}

/* Instagram Header */
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #fff;
  flex-shrink: 0;
}

.instagram-logo {
  color: var(--main-orange);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: underline;
}

.follow-btn {
  background: var(--main-orange);
  color: var(--main-white);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.follow-btn:hover {
  background: #d44428;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(235, 83, 54, 0.3);
}

/* Grid Layout */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  flex: 1;
  max-height: 500px;
  overflow: hidden;
  align-content: start;
}

.post-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #333;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.post-card:hover img {
  filter: brightness(1.1);
}

/* Post Type Icons */
.post-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--main-white);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  transition: all 0.6s ease;
  backdrop-filter: blur(5px);
}

.post-card:hover .post-icon {
  transform: scale(1.3);
  background: var(--main-orange);
}

/* Pagination Dots */
.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: var(--main-orange);
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: var(--main-orange);
}

/* Instagram Section - Responsive Design */

/* Tablet (768px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .instagram-slider-container {
    max-width: 900px;
  }

  .tablet-mockup {
    max-width: 100%;
    height: 700px;
  }

  .tablet-screen {
    width: 85%;
    height: 86%;
    max-width: 750px;
    max-height: 550px;
    padding: 12px 10px;
  }

  .instagram-header {
    gap: 30px;
    margin-bottom: 0.9rem;
    padding-bottom: 0.7rem;
  }

  .instagram-logo {
    font-size: 1.2rem;
  }

  .follow-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .instagram-grid {
    max-height: 430px;
    gap: 6px;
  }

  .post-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

/* Mobile (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .instagram-slider-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .tablet-mockup {
    max-width: 100%;
    height: 550px;
  }

  .tablet-screen {
    width: 80%;
    height: 80%;
    max-width: 600px;
    max-height: 390px;
    padding: 12px 10px;
  }

  .instagram-header {
    gap: 20px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }

  .instagram-logo {
    font-size: 1.1rem;
  }

  .follow-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .instagram-grid {
    max-height: 300px;
    gap: 5px;
  }

  .post-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 6px;
    right: 6px;
  }

  .slider-pagination {
    margin-top: 1.5rem;
  }

  .pagination-dot {
    width: 11px;
    height: 11px;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .instagram-slider-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .whychoose{
    padding-top: 240px;
  }
  .tablet-mockup {
    max-width: 100%;
    height: 350px;
  }

  .tablet-screen {
    width: 93%;
    height: 75%;
    max-width: 100%;
    max-height: 280px;
    padding: 10px 8px;
    border-radius: 12px;
  }

  .instagram-header {
    gap: 7px;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    flex-direction: column;
  }

  .instagram-logo {
    font-size: 0.95rem;
    gap: 0.3rem;
  }

  .instagram-logo i {
    font-size: 1rem;
  }

  .follow-btn {
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    max-height: 160px;
  }

  .post-card {
    border-radius: 6px;
  }

  .post-icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
    top: 5px;
    right: 5px;
  }

  .slider-pagination {
    margin-top: 1.2rem;
    gap: 0.4rem;
  }

  .pagination-dot {
    width: 10px;
    height: 10px;
  }

  .instagram-header {
    margin-bottom: 1rem;
    gap: 7px;
  }

  .instagram-logo {
    font-size: 1rem;
  }

  .follow-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
  position: relative;
}

/* Left Side - Mobile Frame (Sticky) */
.mobile-frame-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 10vh;
  height: 80vh;
  z-index: 1;
}

.mobile-frame-img {
  width: 550px;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.mobile-frame-img:hover {
  transform: scale(1.02);
}

/* Right Side - Stacking Cards */
.features-container {
  position: relative;
  height: fit-content;
}

.feature-card {
  position: sticky;
  top: 10vh;
  height: 50vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 20px 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
  z-index: 10;
}

.feature-card:nth-child(1) {
  z-index: 1;
}

.feature-card:nth-child(2) {
  z-index: 2;
}

.feature-card:nth-child(3) {
  z-index: 3;
}

.feature-card:nth-child(4) {
  z-index: 4;
}

.feature-card.stacked {
  transform: translateY(-20px) scale(0.95);
  opacity: 0.8;
  box-shadow: 0 10px 30px rgba(9, 6, 80, 0.1);
}

.feature-card.stacked-more {
  transform: translateY(-40px) scale(0.9);
  opacity: 0.6;
  box-shadow: 0 5px 20px rgba(9, 6, 80, 0.08);
}

.feature-card.stacked-most {
  transform: translateY(-60px) scale(0.85);
  opacity: 0.4;
  box-shadow: 0 2px 15px rgba(9, 6, 80, 0.05);
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
}

.feature-icon {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-white);
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--main-white);
}

/* Spacer to allow scrolling */
.scroll-spacer {
  height: 10vh;
}

/* Why Choose Us - Responsive Design */

/* Tablet (768px - 991px) - Keep both sections */
@media (min-width: 769px) and (max-width: 991px) {
  .why-choose-container {
    gap: 40px;
    margin-top: 50px;
  }

  .mobile-frame-img {
    width: 400px;
    height: 400px;
  }

  .feature-card {
    height: 45vh;
    padding: 20px 30px;
  }

  .feature-title {
    font-size: 1.05rem;
  }
}

/* Mobile (577px - 768px) - Hide mobile frame, show only cards */
@media (min-width: 577px) and (max-width: 768px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .mobile-frame-container {
    display: none; /* إخفاء الفريم على الموبايل */
  }

  .features-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-card {
    position: static;
    height: auto;
    min-height: 200px;
    margin-bottom: 25px;
    padding: 30px 25px;
    transform: none !important;
    opacity: 1 !important;
  }

  .feature-card.stacked,
  .feature-card.stacked-more,
  .feature-card.stacked-most {
    transform: none !important;
    opacity: 1 !important;
  }

  .feature-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .feature-title {
    font-size: 1.15rem;
    text-align: center;
  }

  .scroll-spacer {
    height: 0;
  }
}

/* Small Mobile (576px and below) - Cards full width */
@media (max-width: 576px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .mobile-frame-container {
    display: none; /* إخفاء الفريم على الموبايل الصغير */
  }

  .features-container {
    width: 100%;
    padding: 0 10px;
  }

  .feature-card {
    position: static;
    height: auto;
    min-height: 180px;
    margin-bottom: 20px;
    padding: 25px 20px;
    transform: none !important;
    opacity: 1 !important;
    border-radius: 1.2rem;
  }

  .feature-card.stacked,
  .feature-card.stacked-more,
  .feature-card.stacked-most {
    transform: none !important;
    opacity: 1 !important;
  }

  .feature-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.5;
  }

  .scroll-spacer {
    height: 0;
  }
}
