


/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #faa700; /* Orange */
    --secondary-color: #222;
    --text-color: #fff;
    --background-color: #1e1e2e;
    --hover-color: #e07b00;
}

/* Header and Navigation Bar */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--background-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    flex-wrap: wrap;
}



.logo img {
  height: 90px; /* adjust height as needed */
  width: 180px;

}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}


/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links li> a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease-in-out;
}

.nav-links a:hover {
    color: var(--hover-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Toggle Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 4px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 5px;
}


/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--background-color);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 0px 20px;
    position: relative;
  }
}



  /* Hero Section */
  #hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 50px 10%;
    height: 100vh;
    margin-top: 60px;
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-content button {
    background: var(--primary-color);
    color: rgb(248, 247, 245);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content button:hover {
    background: var(--hover-color);
    transform: scale(1.05);
}

/* Hero Image */
.hero-image img {
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--background-color);
        width: 100%;
        height: calc(100vh - 60px);
        display: none;
    }

    .nav-links {
        margin: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5em;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 300px;
        margin-top: 0px;
    }
}



/* About Us Section */
#about {
  background: var(--background-color);
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Side - Image Frame */
.about-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.image-frame {
  position: relative;
  max-width: 400px;
  border: 8px solid var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.image-frame:hover img {
  transform: scale(1.1);
}

/* Right Side - Text Content */
.about-content {
  flex: 1;
  max-width: 50%;
  color: var(--text-color);
}

.about-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 span {
  color: var(--primary-color);
}

.about-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  word-break: break-word;
  text-align: left;
}

.about-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-color);
}

.btn-primary:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background: #444;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: left;
      align-items: flex-start;
  }

  .about-image {
      max-width: 100%;
      text-align: center;
  }

  .about-content {
      max-width: 100%;
      font-size: 1.1em;
      padding: 0 5%;
  }

  .about-content h2 {
      font-size: 2em;
      text-align: left;
  }

  .about-content p {
      font-size: 0.95em;
      line-height: 1.4;
      text-align: left;
  }

  .about-buttons {
      justify-content: flex-start;
  }
}








#about-me-766 {
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    padding: 80px 10%;
    color: #fff;
  }
  
  .about-me-wrapper-766 {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  /* Left: Image */
  .about-me-img-766 {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
  }
  
  .about-me-frame-766 {
    max-width: 350px;
    border: 8px solid #ff8c00;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .about-me-frame-766 img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .about-me-frame-766:hover img {
    transform: scale(1.1);
  }
  
  /* Right: Content */
  .about-me-content-766 {
    flex: 1;
    max-width: 50%;
  }
  
  .about-me-content-766 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .text-orange {
    color: orange;
  }
  
  .text-white {
    color: white;
  }
  
  .about-description-766 {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* Tabs */
  .about-tabs-766 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .tab-btn-766 {
    background: #444;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .tab-btn-766.active,
  .tab-btn-766:hover {
    background: #ff8c00;
  }
  
  /* Tab Content */
  .tab-content-wrapper-766 .tab-content-766 {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .tab-content-wrapper-766 .tab-content-766.active {
    display: block;
  }
  
  .tab-content-766 ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tab-content-766 li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  
  .tab-content-766 li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: orange;
    font-weight: bold;
  }
  
  /* Responsive at 766px */
  @media (max-width: 766px) {
    .about-me-wrapper-766 {
      flex-direction: column;
      gap: 30px;
    }
  
    .about-me-img-766 {
      max-width: 100%;
      justify-content: center;
    }
  
    .about-me-content-766 {
      max-width: 100%;
    }
  
    .about-me-content-766 h2 {
      font-size: 2em;
    }
  
    .about-description-766 {
      font-size: 0.95em;
    }
  }
  

  

/* Services Section */
#services {
    padding: 50px 10%;
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 20px;
}

#services h2 span {
    color: #f39c12; /* Orange color */
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.service-heading {
    text-align: left;
    max-width: 60%;
}

.service-heading h2 {
    font-size: 2.5em;
}

.service-heading p {
    font-size: 1.1em;
    color: #ffffff;
}

.service-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-btn {
    background-color: #f39c12; /* Orange button color */
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
    background-color: #e67e22; /* Slightly darker orange on hover */
    transform: scale(1.05);
}

/* Service Cards */
.service-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    flex: 1 1 calc(33% - 20px); /* Three boxes per row */
    max-width: 320px;
    margin-bottom: 20px;
}

.service-box {
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    padding: 20px;
   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 450px; /* Increased height of the box */
    border: 3px solid orange; /* Default blue border */
    transition: border 0.3s ease, transform 0.3s ease;
}

.service-box:hover {
    border: 4px solid #ffffff; /* Orange border on hover */
    transform: translateY(-10px);
}

.service-box h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: orange;
}

.service-box p {
    font-family: Arial, sans-serif;
    color: white;
    margin-bottom: 20px;
    height: auto; /* Allow the paragraph to take its natural height */
}

.service-box button {
    background-color: orange; /* Orange button color */
    color: white;
    padding: 12px 25px; /* Adjusted padding */
    margin-top: auto; /* Pushes the button to the bottom */
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-box button:hover {
    background-color: #1e1e2e; /* Slightly darker orange on hover */
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: orange; /* Orange icon color */
}

/* Mobile View Styles */
@media (max-width: 768px) {
    /* Service Heading and Button Alignment */
    #services {
        padding: 20px 5%;
    }

    .service-header {
        flex-direction: column;
        text-align: left; /* Align text to the left for mobile */
    }

    .service-heading {
        text-align: left; /* Align heading and description left */
        max-width: 100%;
        color: orange;
    }

    .service-button {
        display: flex;
        justify-content: flex-start;
        margin-top: 20px;
    }

    /* Move Get Started Button to Left Side on Mobile */
    .service-btn {
        background-color: #f39c12; /* Orange button color */
        color: white;
        padding: 12px 25px;
        font-size: 1.1em;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
        transition: background 0.3s ease;
    }

    .service-btn:hover {
        background-color: #e67e22; /* Slightly darker orange on hover */
        transform: scale(1.05);
    }

    .service-card {
        flex: 1 1 100%; /* Full width for each box on mobile */
        max-width: 100%;
    }

    .service-cards {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .service-box {
        text-align: left; /* Align text to the left in each service box */
        align-items: flex-start; /* Align content to the left in the box */
        height: auto; /* Allow content to fit naturally */
    }

    .service-box h3 {
        text-align: left; /* Ensure service name is left-aligned */
    }

    .service-box p {
        text-align: left; /* Ensure description is left-aligned */
    }
}

.logo a{
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* Portfolio base */
#portfolio {
  padding: 60px 20px;
  background: #1e1e2e;
  overflow: hidden;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  color: white;
}

.projects-heading {
  font-size: 2.5rem;
}

.highlight {
  color: orange;
}

.portfolio-slider .slick-track {
  display: flex; 
  gap: 20px;

}

.portfolio-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.portfolio-navigation button {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #ff0000;
  border: 0;
  padding: 0;
  outline: 2px solid #f6f6f6;
}

.portfolio-btn {
  color: rgb(255, 255, 255);
  font-size: 1em;
  background: rgb(243, 156, 18);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .portfolio-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .portfolio-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #FFA500;
  color: #1e1e2e;
}


/* Reviews Section Styling */
.reviews {
    background-color: #1e1e2e;
    padding: 70px 0;
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  .reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Flex Alignment */
  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .reviews-header-left {
    flex: 1;
    min-width: 300px;
  }
  
  .reviews-main-heading {
    font-size: 40px;
    color: #ff9b04;
    margin-bottom: 5px;
  }
  
  .reviews-sub-heading {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .reviews-description {
    font-size: 16px;
    color: #ccc;
    max-width: 500px;
  }
  
  .reviews-header-right {
    text-align: right;
  }
  
  .reviews-btn {
    background-color: #ff9b04;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .reviews-btn:hover {
    background-color: #e67e22;
  }
  
  /* Review Boxes */
  .reviews-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  
  }
  
  .review-box {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: calc(33.33% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .review-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .reviewer-img img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #ff9b04;
    margin-bottom: 5px;
  }
  
  .review-text {
    font-style: italic;
    margin-bottom: 10px;
    font-size: small;
  }
  
  .reviewer-name {
    font-weight: bold;
    font-size: 16px;
    color: #ff9b04;
  }
  
  .reviewer-role {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .reviews-header {
      flex-direction: column;
      text-align: left;
    }
    .reviews-btn {
      margin-top: 10px;
    }
    .review-box {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .reviews-btn {
      width: 100%;
    }
  }
  

  
/* Contact Section */
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(to right, rgb(42, 42, 60), rgb(19, 19, 26));
  }
  
  #contact .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    text-align: left;
  }
  
  #contact .contact-left {
    width: 50%;
    padding: 20px;
    color: white;
  }
  
  #contact .contact-left h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: orange;
  }
  
  #contact .contact-left p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: normal;
  }
  
  /* Social Media Icons */
  #contact .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: orange;
  }
  
  #contact .social-icon {
    font-size: 1.5em;
    color: white;
    transition: color 0.3s ease;
  }
  
  #contact .social-icon:hover {
    color: #f39c12;
  }
  
  /* Form Styles */
  #contact .contact-right {
    width: 50%;
    padding: 20px;
    background: #2a2a3c;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
  }
  
  #contact .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  #contact label {
    font-size: 1em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid orange;
    border-radius: 5px;
    background-color: #1e1e2e;
    color: white;
  }
  
  #contact .submit-btn {
    background: #ff9b04;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
    text-align: left;
  }
  
  #contact .submit-btn:hover {
    background: #f39c12;
    transform: scale(1.05);
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    #contact .contact-container {
        flex-direction: column;
    }
    #contact .contact-left, #contact .contact-right {
        width: 100%;
    }
    #contact .submit-btn {
        width: 50%;
    }
  }


 
/* Footer 
---------------------------*/
/* General Footer Styles */
.footer {
    background-color: #1e1e2e;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 20px 0;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff9b04;
}

.footer-column p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

/* 1st Column: Social Icons Hover Effect */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #ffffff; /* Default white */
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff9b04; /* Orange on hover */
}

/* 4th Column: Orange Icons */
.footer-column p i {
    color: #ff8800; /* Orange icons */
    min-width: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px; /* pehle 30px tha, kam kar diya */
  border-top: 1px solid #444;
  padding-top:25px; /* pehle 40px tha, kam kar diya */
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .social-icons a {
        margin: 5px;
    }
}


/* 4th Column: Contact Info Text Styling */
.footer-column p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px; /* Smaller font size */
    font-weight: normal; /* Remove bold style */
    padding: 3px;
}

.footer-column p i {
    color: #ff8800; /* Orange icons */
    min-width: 20px;
}

/* Back to Top - Square Right Side */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.8); 
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0;
}

/* Show button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Hover effect - full color */
.back-to-top:hover,
.back-to-top:focus {
  background-color: #ff8c00; /* Full solid color on hover */
}

/* Active/click effect */
.back-to-top:active {
  background-color: #e25c00; /* Slightly darker on click */
}

.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, left 0.1s ease-out, top 0.1s ease-out;
  z-index: 9999;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #c6c6c6;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
  z-index: 10000;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: background 0.3s, border 0.3s, transform 0.2s ease-out;
  mix-blend-mode: difference;
}

/* Tail */
.cursor-tail {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  filter: blur(4px);
  transition: transform 0.15s ease-out;
}

/* Eye */
.cursor-eye {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 9997;
  transform: rotate(45deg);
  opacity: 0.6;
}

/* Ripple Effect */
.cursor-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  opacity: 0;
  transform: scale(1);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Ripple Animation */
.cursor-ripple.active {
  opacity: 1;
  transform: scale(8);
}

/* Hover grow effect */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
.back-to-top:hover ~ .custom-cursor {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.5);
}

/* White BG Mode */
body.white-bg .custom-cursor {
  border-color: black;
  mix-blend-mode: normal;
}


/* Chatbot Small Vertical Button */
.chatbot-small-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 120px;
  background-color: orange;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: none;
}

.chatbot-small-btn .vertical-text {
  color: black;
  font-weight: bold;
  transform: rotate(180deg);
  font-size: 14px;
}

/* Chatbot Main Box */
.chatbot-main-box {
  position: fixed;
  top: 50%;
  right: -320px;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  background: #fff;
  border: 2px solid orange;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  overflow: hidden;
}

/* Chat Header */
.chat-header {
  background-color: orange;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
}

/* Chat Window */
.chat-window {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Chat Messages */
.chat-message {
  margin-bottom: 10px;
  padding: 8px 12px;
  background-color: #f1f1f1;
  max-width: 80%;
  border-radius: 0;
}

.user-message {
  background-color: #d1e7fd;
  align-self: flex-end;
}

/* Chat Input Area */
.chat-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.chat-input-area input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.chat-input-area button {
  padding: 8px 15px;
  margin-left: 5px;
  background-color: orange;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}


  /* === SERVICES PAGE ONLY === */

/* Hero Section Styles */
#services-hero-section {
    padding: 100px 50px;
    background-color: #1e1e2e;
  }
  
  .services-hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px;
  }
  
  /* Text Block */
  .services-hero-text {
    flex: 1 1 45%;
  }
  
  .services-hero-text h1 {
    font-size: 2.5rem;
    color: orange;
    margin-bottom: 15px;
  }
  
  .services-hero-text p {
    font-size: 1.2rem;
    color: white;
    max-width: 90%;
    line-height: 1.6;
  }
  
  .services-line {
    height: 3px;
    width: 60px;
    background-color: orange;
    margin: 20px 0;
  }
  
  .services-contact-link .services-contact-btn {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .services-contact-btn:hover {
    background-color: black;
  }
  
  /* Video Block */
  .services-hero-video {
    display: flex;
    justify-content: center;
    flex: 1 1 45%;
    height: 190px;

  }
  .services-hero-video-wrap {
    min-width: 350px;
    max-width: 450px;
  }
  
  .video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    
  }
  
  .video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    #services-hero-section {
      padding: 80px 30px;
    }
  
    .services-hero-text h1 {
      font-size: 2.2rem;
    }
  
    .services-hero-text p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    
    .services-hero-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .services-hero-text,
    .services-hero-video {
      flex: 1 1 100%;
    }
  
    .services-hero-text p {
      max-width: 100%;
      text-align: left;
    }
  
    .services-hero-text h1 {
      font-size: 2rem;
      text-align: left;
    }

    .services-hero-video-wrap  iframe {
      width: 100vw;
      height: 250px;
    }

  }
  
  @media (max-width: 480px) {
    #services-hero-section {
      padding: 60px 20px;
    }
  
    .services-hero-text h1 {
      font-size: 1.8
    }

    .services-hero-wrapper {
      padding: 0;
    }
}

  /* Section Header */
.section-header {
    text-align: center;
    margin: 40px 0;
    
  }
  
  .section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
  }
  
  .section-header p {
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  /* Team Container */
  .team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: var(--background-color);
    
  }
  
  /* Team Card */
  .team-card {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(145deg, #1c1f26, #2b2f3a);
    box-shadow: 5px 5px 15px #e68608, -5px -5px 15px #eb8006;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 155, 6, 0.3);
  }
  
  /* Team Image */
  .team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  /* Team Content */
  .team-content {
    padding: 15px;
  }
  
  .team-content h3 {
    margin: 10px 0 5px;
    font-size: 1.4rem;
    color: #ff9100;
  }
  
  .team-content p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  /* Social Links */
  .team-socials {
    margin-top: 10px;
  }
  
  .team-socials a {
    margin: 0 5px;
    text-decoration: none;
    color: #e0970f;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .team-socials a:hover {
    color: #f79606;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .team-container {
      flex-direction: column;
      align-items: center;
    }
  }





/* Section Header */
.section-header {
  text-align: center;
  margin: 50px 0;
}

.section-header h2 {
  font-size: 3rem;
  color: orange;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Progress Container */
.progress-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Progress Item */
.progress-item {
  background: linear-gradient(145deg, #1c1f26, #2b2f3a);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.progress-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.progress-item p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #df8600;
}

/* Progress Section */
.progress-section {
  padding: 50px 20px;
  background: var(--background-color);
  color: #fff;
}

.section-header h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #FFA500;
}

.section-header p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Progress Container */
.progress-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

/* Progress Item */
.progress-item {
  background: linear-gradient(145deg, #1c1f26, #2b2f3a);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.progress-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
}

/* Skill Name */
.progress-item p {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #FFA500;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* Progress Fill */
.progress {
  position: absolute;
  height: 100%;
  background: linear-gradient(145deg, #dfa400, #d49100);
  border-radius: 10px;
  width: 0;
  transition: width 1s ease;
}

/* When Hover */
.progress-item:hover .progress {
  width: 100% !important;
}

/* Percentage */
.progress-percentage {
  margin-top: 12px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}

/* blog posts  */

.blog-grid {
  display: grid
;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: center;
}

.blog-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: #333;
  text-decoration: none;
}

.blog-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #ff8800;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}



/* Responsive */
@media (max-width: 768px) {
  .progress-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .progress-container {
    grid-template-columns: 1fr;
  }
}

  /* Mission Section */
.mission-section {
    padding: 60px 20px;
    background: linear-gradient(145deg, #1c1f26, #2b2f3a);
    overflow: hidden;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  /* Mission Content */
  .mission-content {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
  }
  
  .mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff8c00;
  }
  
  .mission-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
    text-align: left;
  }
  
  /* Points */
  .mission-points {
    margin-top: 20px;
  }
  
  .point {
    display: none;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .point.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .point h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    margin-bottom: 5px;
  }
  
  .point p {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  /* Arrows */
  .arrows {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    color: #ff8c00;
    cursor: pointer;
  }
  
  .arrow:hover {
    color: #e67600;
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }
  
  /* Mission Image */
  .mission-image {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    position: relative;
    overflow: hidden;
  }
  
  .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 5s ease-in-out;
    animation: imageMove 5s infinite alternate ease-in-out;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes imageMove {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-20px);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: left;
    }
  
    .mission-content, .mission-image {
      max-width: 100%;
    }
  
    .mission-content h2 {
      font-size: 2rem;
    }
  
    .mission-points {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .mission-content h2 {
      font-size: 1.8rem;
    }
  
    .mission-content p {
      font-size: 0.9rem;
    }
  
    .mission-content {
      text-align: left;
    }
  }
  

  
/* Hero Section */
#nor-hero {
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 10%;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
  }
  
  /* Content */
  .nor-content {
    max-width: 50%;
    text-align: left;
  }
  
  .nor-hello {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .nor-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Static Text */
  #nor-static {
    color: orange;
    font-weight: bold;
  }
  
  /* Description */
  .nor-description {
    margin: 20px 0;
    color: white;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Button with Anchor Tag */
  .nor-btn {
    background: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* Hover Effect */
  .nor-btn:hover {
    background: #d17d00;
    transform: translateY(-3px);
  }
  
  /* Social Icons Below Button */
  .nor-social-icons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nor-social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .nor-social-icons a:hover {
    transform: scale(1.2);
    color: orange;
  }
  
  /* Icons Alignment for Mobile */
  @media (max-width: 768px) {
    #nor-hero {
        flex-direction: column;
        text-align: left;
        padding: 110px 20px;
    }
  
    .nor-content {
        max-width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }
  
    .nor-image img {
        margin-top: 20px;
        width: 300px;
        height: 300px;
        object-fit: contain;
    }
  
    .nor-btn {
        width: 80%;
        margin-left: 0;
        padding: 12px;
    }
  
    .nor-social-icons {
        justify-content: flex-start;
    }
  }
  
  /* Image Section */
  .nor-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: nor-float 3s infinite alternate;
  }
  
  @keyframes nor-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
  

  /* My Work Section */
  #portfolio-section {
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    padding: 80px 10%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* Left Side: Title */
  #portfolio-section .portfolio-title {
    flex: 1;
    max-width: 25%;
    text-align: left;
  }
  
  #portfolio-section .portfolio-title h2 {
    font-size: 3em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  #portfolio-section .portfolio-title .portfolio-highlight {
    color: orange;
  }
  
  /* Right Side: Portfolio Boxes */
  #portfolio-section .portfolio-projects {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Individual Box */
  #portfolio-section .portfolio-item {
    background: #2b2b3c;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  #portfolio-section .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }
  
  /* Box Title */
  #portfolio-section .portfolio-item h3 {
    font-size: 1.5em;
    color: orange;
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Box Description */
  #portfolio-section .portfolio-item p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 15px;
    text-align: left;
    word-break: break-word;
    line-height: 1.4;
  }
  
  /* Button */
  #portfolio-section .portfolio-btn {
    background: orange;
    color: #1e1e2e;
    border: none;
    padding: 8px 16px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: auto;
  }
  
  #portfolio-section .portfolio-btn:hover {
    background: #ff9800;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    #portfolio-section {
        flex-direction: column;
        gap: 30px;
    }
  
    #portfolio-section .portfolio-title {
        max-width: 100%;
        text-align: center;
    }
  
    #portfolio-section .portfolio-title h2 {
        font-size: 2.5em;
    }
  
    #portfolio-section .portfolio-projects {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    #portfolio-section {
        gap: 20px;
    }
  
    #portfolio-section .portfolio-title {
        text-align: center;
    }
  
    #portfolio-section .portfolio-title h2 {
        font-size: 2em;
    }
  
    #portfolio-section .portfolio-item {
        text-align: left;
    }
  
    #portfolio-section .portfolio-item p {
        font-size: 0.95em;
    }
  }
  
/* About Me Section Styles */
#about-me {
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about-me-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.about-me-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.about-me-frame {
  border: 8px solid #ff8c00;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  display: inline-block;
  width: 400px;
  height: 400px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-me-frame:hover {
  transform: scale(1.05) rotate(2deg);
}

.about-me-frame img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.about-me-frame:hover img {
  transform: scale(1.1);
}

.about-me-content {
  flex: 1;
  min-width: 300px;
  max-width: 680px;
}

.about-me-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-orange {
  color: orange;
}

.about-white {
  color: white;
}

.about-me-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Tabs */
.about-me-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  
}

.tab-btn {
  background-color: #1e1e2e;
  color: #fff;
  border: 1px solid orange;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: orange;
  color: #111;
}

/* Tab Content */
.about-me-tab-content {
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  padding: 20px;
  border-radius: 8px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
  padding-left: 0;
}

.tab-content li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.tab-content li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: orange;
  font-size: 14px;
  line-height: 1;
  top: 3px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
    text-align: left;
  }

  .about-me-tabs {
    justify-content: left;
  }

  .tab-btn {
    margin-bottom: 10px;
  }

  .about-me-frame {
    width: 300px;
    height: 300px;
  }

  .about-me-content {
    max-width: 100%;
  }
}




  /* Contact Section */
  #contact-page {
    background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  
  /* Contact Wrapper */
  .contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  /* Left Side: Contact Info */
  .contact-info {
    flex: 1;
    max-width: 40%;
  }
  
  .contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .contact-info h2 span {
    color: orange;
  }
  
  .contact-info p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  /* Social Media Links */
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-link {
    background: #2b2b3c;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .social-link:hover {
    background: orange;
    transform: scale(1.1);
  }
  
  /* Right Side: Contact Form */
  .contact-form-area {
    flex: 1;
    max-width: 50%;
    background: #2b2b3c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-input input,
  .form-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #3c3c4d;
    color: #fff;
    font-size: 1em;
    outline: none;
    transition: border 0.3s ease;
  }
  
  .form-input input:focus,
  .form-input textarea:focus {
    border: 1px solid orange;
  }
  
  /* Submit Button */
  .form-submit-btn {
    background: orange;
    color: #1e1e2e;
    font-size: 1em;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .form-submit-btn:hover {
    background: #ff9800;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
  
    .contact-info,
    .contact-form-area {
        max-width: 100%;
    }
  
    .contact-info h2 {
        font-size: 2em;
    }
  }
  
  @media (max-width: 768px) {
    .contact-info p {
        font-size: 0.95em;
    }
  
    .form-input input,
    .form-input textarea {
        font-size: 0.95em;
    }
  
    .form-submit-btn {
        font-size: 0.95em;
    }
  }
  /* Submit Button */
  .form-submit-btn {
    background: orange;
    color: #1e1e2e;
    font-size: 1em;
    border: none;
    padding: 8px 15px; /* Adjusted Padding for Smaller Width */
    width: fit-content; /* Button Width Adjusted to Fit Content */
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .form-submit-btn:hover {
    background: #ff9800;
    transform: scale(1.05);
  }
  
  
 

/* Hero Section Styles */
#contact-hero {
  background: url('<?php echo get_template_directory_uri(); ?>/assets/img/about-us.jpg') no-repeat center center/cover;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


.contact-hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section Styles */
#contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

.contact-section-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container, .contact-info-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container form label {
    display: block;
    margin-top: 15px;
}

.contact-form-container form input,
.contact-form-container form select,
.contact-form-container form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact-form-container form button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Contact Info */
.contact-info-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #0073aa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-info-box i {
    font-size: 20px;
    color: #0073aa;
    margin-right: 10px;
}

.contact-info-box h3 {
    margin-top: 10px;
}

.contact-info-box p {
    margin: 5px 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 20px;
    color: orange;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section-container {
        flex-direction: column;
    }

    .contact-hero-overlay h1 {
        font-size: 32px;
    }
}



/* Workflow Section */
#workflow-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    scroll-behavior: smooth;
  }
  
  .workflow-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .workflow-header h2 {
    font-size: 36px;
    color: #222;
  }
  
  .workflow-description {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  
  .workflow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .workflow-step {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .workflow-step:hover {
    transform: translateY(-10px);
  }
  
  .workflow-icon {
    font-size: 40px;
    color: orange;
    margin-bottom: 15px;
  }
  
  .workflow-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .workflow-step p {
    color: #555;
    font-size: 16px;
  }
  
  /* Button */
  .workflow-btn {
    margin-top: 40px;
    padding: 12px 30px;
    background-color: orange;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .workflow-btn:hover {
    background-color: #ff8c00;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .workflow-steps {
      flex-direction: column;
      align-items: center;
    }
  
    .workflow-step {
      width: 100%;
      max-width: 350px;
    }
  }
  

  
/* Hero Section Styles */
#hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px 50px;
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  color: #fff;
  flex-wrap: wrap;
}

.web1 {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title {
  font-size: 30px; /* Increased font size */
  color: orange;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.hero-video iframe {
  width: 1000%;
  height: 200px; /* Increased video height for large screens */
  border: none;
  padding-right: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero-section {
    padding: 130px 40px;
    flex-direction: column;
    align-items: flex-start; /* Aligning to the left */
    justify-content: flex-start; /* Aligning to the left */
  }

  .hero-title {
    font-size: 30px; /* Adjusted for smaller screen */
    text-align: left; /* Align title to the left */
  }

  .hero-description {
    font-size: 14px;
    text-align: left; /* Align description to the left */
  }

  .hero-video {
    margin-top: 20px;
    text-align: left; /* Align video to the left */
    width: 150%;
  }

  .hero-video iframe {
    height: 300px; /* Adjusted video size for smaller screens */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px; /* Further reduced on very small screens */
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-video iframe {
    height: 200px; /* Adjusted video size for very small screens */
    
  }
}


/* About Us Section */
#about-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  color: #fff;
  text-align: left;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-us-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Top Circle - Centered */
.top-circle {
  margin-bottom: 20px;
}

/* Group for Bottom Circles */
.about-frame-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Circular Frame Styling */
.about-frame {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimation 8s infinite linear; /* Animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes spinAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Image Inside Frame */
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Text Section */
.about-us-right {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading {
  font-size: 40px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  #about-us-section {
    flex-direction: column;
    padding: 20px;
  }
  .about-frame {
    width: 120px;
    height: 120px;
  }
  .about-heading {
    font-size: 28px;
  }
  .about-description {
    font-size: 14px;
  }
  .about-frame-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 20px;
  }
  .about-description {
    font-size: 12px;
  }
  .about-frame {
    width: 100px;
    height: 100px;
  }
}


/* Services Section Background */
#custom-services {
  background-color: #1e1e2e; /* Previous Dark Background Color */
  padding: 70px 5%;
  text-align: center;
}

/* Main Heading Styling */
.custom-main-heading {
  font-size: 2.5em;
  text-align: center;
  color: #ffffff; /* White Text */
  margin-bottom: 15px;
  line-height: 1.4;
  padding-bottom: 10px;
}

/* Main Description Styling */
.custom-main-description {
  font-size: 1.4em;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Service Cards */
.custom-service-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.custom-service-card {
  flex: 1 1 calc(33.33% - 25px); /* Slightly wider boxes */
  max-width: 380px; /* Increased max width */
  margin-bottom: 25px;
}

/* Service Box Styling */
.custom-service-box {
  background-color: #1e1e2e; /* Dark Background */
  padding: 25px;
  border: 2px solid #f39417; /* Light border color */
  text-align: left;
  height: auto; /* Auto height */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.custom-service-box:hover {
  border-color: #fafafa; /* Orange border on hover */
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); /* Slight hover shadow */
}

/* Box Headings */
.custom-service-box h3 {
  font-size: 1.5em;
  color: #f39c12; /* Orange Text */
  margin-bottom: 10px;
}

/* Box Paragraph */
.custom-service-box p {
  font:  sans-serif;
  color: #ffffffe0; /* White Text */
  margin-top: 10px;
  text-align: left;
}

/* Service Icons */
.custom-service-icon {
  font-size: 2.5em;
  color: #f39c12; /* Orange Icon */
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
  .custom-main-heading {
      font-size: 2em;
  }

  .custom-main-description {
      font-size: 1em;
  }

  .custom-service-cards {
      gap: 15px;
  }

  .custom-service-card {
      flex: 1 1 calc(50% - 15px); /* Two boxes per row */
      max-width: calc(50% - 15px);
  }

  .custom-service-box {
      padding: 20px;
  }
}

@media (max-width: 480px) {
  .custom-service-card {
      flex: 1 1 100%; /* One box per row */
      max-width: 100%;
  }

  .custom-service-cards {
      gap: 10px;
  }

  .custom-service-box {
      padding: 15px;
  }
}


/* Global Font Styling */
#custom-services {
  font-family: 'Arial', 'Verdana', 'Open Sans', sans-serif;
}

/* Main Heading Styling */
.custom-main-heading {
  font-size: 2.5em;
  text-align: center;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold; /* Emphasize heading */
}

/* Main Description Styling */
.custom-main-description {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-weight: normal; /* Ensure it's not overly bold */
}

/* Service Box Headings */
.custom-service-box h3 {
  font-size: 1.4em;
  color: #f39c12;
  margin-bottom: 10px;
  font-weight: bold; /* Bold heading for emphasis */
}

/* Service Box Paragraph */
.custom-service-box p {
  font-size: 1em;
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
  line-height: 1.5; /* Improved readability */
  font-weight: normal;
}

/* Service Icons */
.custom-service-icon {
  font-size: 2.5em;
  color: #f39c12;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-main-heading {
      font-size: 2em;
  }

  .custom-main-description {
      font-size: 1em;
  }

  .custom-service-box h3 {
      font-size: 1.2em;
  }

  .custom-service-box p {
      font-size: 0.95em;
  }
}

/* Our Working Process Section */
#working-process {
  background: linear-gradient(135deg, #1e1e2e, #3c3c4d);
  color: #fff;
  padding: 50px 10%;
  text-align: center;
}

/* Heading */
.working-process-heading {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: orange;
  text-align: center;
}

.working-process-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #ccc;
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.process-step {
  background: #2c2c3c;
  border: 2px solid #ffffff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  max-width: 300px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-color: orange;
  transform: translateY(-5px);
}



/* Ready to Grow Section */
#ready-to-grow {
  background: #1e1e2e;
  color: #fff;
  padding: 50px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ready-to-grow-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.ready-to-grow-left {
  max-width: 60%;
}

.ready-to-grow-heading {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 15px;
  text-align: left; /* Left-aligned heading on larger screens */
}

.ready-to-grow-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #ccc;
  text-align: left; /* Left-aligned description on larger screens */
}

.ready-to-grow-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.get-started {
  background-color: #f39c12;
  color: white;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.get-started:hover {
  background-color: #e67e22; /* Slightly darker orange */
  transform: scale(1.05);
}

/* Mobile View */
@media (max-width: 768px) {
  #ready-to-grow {
      flex-direction: column;
      padding: 30px 5%;
  }

  .ready-to-grow-container {
      flex-direction: column; /* Stack content vertically */
      align-items: center; /* Center content horizontally */
  }

  .ready-to-grow-left {
      max-width: 100%;
      text-align: center; /* Center text on mobile */
      margin-bottom: 20px;
  }

  .ready-to-grow-heading {
      font-size: 2em;
      text-align: center; /* Center heading */
  }

  .ready-to-grow-description {
      font-size: 1em;
      text-align: center; /* Center description */
  }

  .ready-to-grow-right {
      justify-content: center; /* Center the button */
  }

  .get-started {
      padding: 12px 25px;
  }
}






/* Hero Section 3 Styles */
#hero-section-wordpress13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #1e1e2e, #3a3a4a);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.wordpress13-text {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title-wordpress13 {
  font-size: 32px;
  color: #f39c12;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description-wordpress13 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.wordpress13-video {
  flex: 1;
  text-align: center;
}

.wordpress13-video iframe {
  width: 60%;
  height: 200px;
  border: none;
  padding-top: 40px;
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
  #hero-section3, #hero-section-wordpress13 {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
  }

  .hero-title3, .hero-title-wordpress13 {
    font-size: 28px;
    text-align: left;
  }

  .hero-description3, .hero-description-wordpress13 {
    font-size: 14px;
    text-align: left;
  }

  .hero-video3, .wordpress13-video {
    margin-top: 20px;
    width: 100%;
  }

  .hero-video3 iframe, .wordpress13-video iframe {
    height: 250px;
  }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  #hero-section3, #hero-section-wordpress13 {
    padding: 100px 20px;
    align-items: flex-start;
  }

  .hero-title3, .hero-title-wordpress13 {
    font-size: 24px;
    text-align: left;
  }

  .hero-description3, .hero-description-wordpress13 {
    font-size: 12px;
    text-align: left;
  }

  .hero-video3 iframe, .wordpress13-video iframe {
    height: 200px;
  }
}

/* About Us Section WordPress Styles */
#about-us-section-wordpress14 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  color: #fff;
}

.about-us-container-wordpress14 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.about-us-left-wordpress14 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top-circle-wordpress14 {
  margin-bottom: 20px;
}

.about-frame-group-wordpress14 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-frame-wordpress14 {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimationWordpress14 8s infinite linear;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame-wordpress14:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes spinAnimationWordpress14 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-frame-wordpress14 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-right-wordpress14 {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading-wordpress14 {
  font-size: 36px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description-wordpress14 {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Tablet */
@media (max-width: 768px) {
  #about-us-section-wordpress14 {
    flex-direction: column;
    padding: 20px;
  }
  .about-frame-wordpress14 {
    width: 120px;
    height: 120px;
  }
  .about-heading-wordpress14 {
    font-size: 28px;
  }
  .about-description-wordpress14 {
    font-size: 14px;
  }
  .about-frame-group-wordpress14 {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-heading-wordpress14 {
    font-size: 22px;
  }
  .about-description-wordpress14 {
    font-size: 12px;
  }
  .about-frame-wordpress14 {
    width: 100px;
    height: 100px;
  }
}

/* Services Section 5 */
#custom-services6 {
  background-color: #2a2a3c;
  padding: 70px 5%;
  text-align: center;
}

.custom-main-heading6 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.custom-main-description6 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.custom-service-cards6 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.custom-service-card6 {
  flex: 0 1 calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  box-sizing: border-box;
}

.custom-service-box6 {
  background-color: #1e1e2e;
  padding: 25px;
  border: 2px solid orange;
  text-align: left;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-box6:hover {
  border-color: #fafafa;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.custom-service-box6 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.custom-service-box6 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

.custom-service-icon6 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-service-card6 {
    flex: 0 1 calc(50% - 20px); /* 2 boxes per row on tablets */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .custom-service-card6 {
    flex: 0 1 100%; /* 1 box per row on mobile */
    max-width: 100%;
  }
}


#wp-content6 {
  background: linear-gradient(135deg, #2b2b3d, #1f1f2f);
  padding: 70px 5%;
  text-align: center;
}

.wp-content-heading6 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.wp-content-description6 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.wp-steps6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wp-step6 {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background: linear-gradient(135deg, #1f1f2f, #2b2b3d);
  padding: 25px;
  text-align: center;
  border: 2px solid #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wp-step6:hover {
  border-color: orange;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.wp-icon6 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

.wp-step6 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.wp-step6 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

/* Tablet View */
@media (max-width: 992px) {
  .wp-step6 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .wp-content-heading6 {
    font-size: 2em;
  }

  .wp-content-description6 {
    font-size: 1em;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .wp-step6 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .wp-content-heading6 {
    font-size: 1.8em;
  }

  .wp-content-description6 {
    font-size: 0.9em;
  }
}

#hero-section-graphic14 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #2b2b3d, #4b4b5f);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.graphic14-text {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title-graphic14 {
  font-size: 32px;
  color: orange;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description-graphic14 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.graphic14-video {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.graphic14-video iframe {
  width: 60%;
  height: 200px;
  border: none;
  padding-top: 20px;
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
  #hero-section-graphic14 {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
  }

  .hero-title-graphic14 {
    font-size: 28px;
    text-align: left;
  }

  .hero-description-graphic14 {
    font-size: 14px;
    text-align: left;
  }

  .graphic14-video {
    margin-top: 20px;
    width: 100%;
  }

  .graphic14-video iframe {
    height: 180px;
  }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  #hero-section-graphic14 {
    padding: 100px 20px;
    align-items: flex-start;
  }

  .hero-title-graphic14 {
    font-size: 24px;
    text-align: left;
  }

  .hero-description-graphic14 {
    font-size: 12px;
    text-align: left;
  }

  .graphic14-video iframe {
    height: 150px;
  }
}

#about-us-section-graphic15 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #3a3a4a, #5a5a6e);
  color: #fff;
}

.about-us-container-graphic15 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.about-us-left-graphic15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top-circle-graphic15 {
  margin-bottom: 20px;
}

.about-frame-group-graphic15 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-frame-graphic15 {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a3a4a, #5a5a6e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimationGraphic15 8s infinite linear;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame-graphic15:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes spinAnimationGraphic15 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-frame-graphic15 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-right-graphic15 {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading-graphic15 {
  font-size: 36px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description-graphic15 {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Tablet */
@media (max-width: 768px) {
  #about-us-section-graphic15 {
    flex-direction: column;
    padding: 20px;
  }
  .about-frame-graphic15 {
    width: 120px;
    height: 120px;
  }
  .about-heading-graphic15 {
    font-size: 28px;
  }
  .about-description-graphic15 {
    font-size: 14px;
  }
  .about-frame-group-graphic15 {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-heading-graphic15 {
    font-size: 22px;
  }
  .about-description-graphic15 {
    font-size: 12px;
  }
  .about-frame-graphic15 {
    width: 100px;
    height: 100px;
  }
}


#graphic-services7 {
  background-color: #1e1e2e;
  padding: 70px 5%;
  text-align: center;
}

.graphic-main-heading7 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.graphic-main-description7 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.graphic-service-cards7 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.graphic-service-card7 {
  flex: 0 1 calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  box-sizing: border-box;
}

.graphic-service-box7 {
  background-color: #2b2b3d;
  padding: 25px;
  border: 2px solid orange;
  text-align: left;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.graphic-service-box7:hover {
  border-color: #fafafa;
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}

.graphic-service-box7 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.graphic-service-box7 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

.graphic-service-icon7 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .graphic-service-card7 {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .graphic-service-card7 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

#graphic-content7 {
  background: linear-gradient(135deg, #2e2e4a, #1f1f2f);
  padding: 70px 5%;
  text-align: center;
}

.graphic-content-heading7 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.graphic-content-description7 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.graphic-steps7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.graphic-step7 {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background: linear-gradient(135deg, #1f1f2f, #2e2e4a);
  padding: 25px;
  text-align: center;
  border: 2px solid #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.graphic-step7:hover {
  border-color: orange;
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}

.graphic-icon7 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

.graphic-step7 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.graphic-step7 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .graphic-step7 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .graphic-content-heading7 {
    font-size: 2em;
  }

  .graphic-content-description7 {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .graphic-step7 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .graphic-content-heading7 {
    font-size: 1.8em;
  }

  .graphic-content-description7 {
    font-size: 0.9em;
  }
}

#hero-section-ecommerce14 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #2a2a3c, #3b3b4d);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.ecommerce14-text {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title-ecommerce14 {
  font-size: 32px;
  color: orange;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description-ecommerce14 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.ecommerce14-video {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.ecommerce14-video iframe {
  width: 60%;
  height: 200px;
  border: none;
  padding-top: 20px;
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
  #hero-section-ecommerce14 {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
  }

  .hero-title-ecommerce14 {
    font-size: 28px;
    text-align: left;
  }

  .hero-description-ecommerce14 {
    font-size: 14px;
    text-align: left;
  }

  .ecommerce14-video {
    margin-top: 20px;
    width: 100%;
  }

  .ecommerce14-video iframe {
    height: 180px;
  }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  #hero-section-ecommerce14 {
    padding: 100px 20px;
    align-items: flex-start;
  }

  .hero-title-ecommerce14 {
    font-size: 24px;
    text-align: left;
  }

  .hero-description-ecommerce14 {
    font-size: 12px;
    text-align: left;
  }

  .ecommerce14-video iframe {
    height: 150px;
  }
}

#about-us-section-ecommerce {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #3a3a4a, #5a5a6e);
  color: #fff;
}

.about-us-container-ecommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.about-us-left-ecommerce {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top-frame-ecommerce {
  margin-bottom: 20px;
}

.about-frame-group-ecommerce {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-frame-ecommerce {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a3a4a, #5a5a6e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimationEcommerce 8s infinite linear;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame-ecommerce:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes spinAnimationEcommerce {
  0% {
      transform: rotate(0deg);
  }
  50% {
      transform: rotate(180deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.about-frame-ecommerce img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-right-ecommerce {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading-ecommerce {
  font-size: 36px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description-ecommerce {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Tablet */
@media (max-width: 768px) {
  #about-us-section-ecommerce {
      flex-direction: column;
      padding: 20px;
  }
  .about-frame-ecommerce {
      width: 120px;
      height: 120px;
  }
  .about-heading-ecommerce {
      font-size: 28px;
  }
  .about-description-ecommerce {
      font-size: 14px;
  }
  .about-frame-group-ecommerce {
      flex-direction: column;
      align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-heading-ecommerce {
      font-size: 22px;
  }
  .about-description-ecommerce {
      font-size: 12px;
  }
  .about-frame-ecommerce {
      width: 100px;
      height: 100px;
  }
}


#ecommerce-services {
  background-color: #1e1e2e;
  padding: 70px 5%;
  text-align: center;
}

.ecommerce-main-heading {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.ecommerce-main-description {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.ecommerce-service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ecommerce-service-card {
  flex: 0 1 calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  box-sizing: border-box;
}

.ecommerce-service-box {
  background-color: #2b2b3d;
  padding: 25px;
  border: 2px solid orange;
  text-align: left;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ecommerce-service-box:hover {
  border-color: #fafafa;
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}

.ecommerce-service-box h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.ecommerce-service-box p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

.ecommerce-service-icon {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ecommerce-service-card {
      flex: 0 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .ecommerce-service-card {
      flex: 0 1 100%;
      max-width: 100%;
  }
}

#ecommerce-content {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 70px 5%;
  text-align: center;
}

.ecommerce-content-heading {
  font-size: 2.5em;
  color: #ff9900;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.ecommerce-content-description {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.ecommerce-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ecommerce-step {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 25px;
  text-align: center;
  border: 2px solid #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ecommerce-step:hover {
  border-color: #ff9900;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.ecommerce-icon {
  font-size: 2.5em;
  color: #ff9900;
  margin-bottom: 10px;
  text-align: center;
}

.ecommerce-step h3 {
  font-size: 1.5em;
  color: #ff9900;
  margin-bottom: 10px;
}

.ecommerce-step p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .ecommerce-step {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
  }

  .ecommerce-content-heading {
      font-size: 2em;
  }

  .ecommerce-content-description {
      font-size: 1em;
  }
}

@media (max-width: 576px) {
  .ecommerce-step {
      flex: 1 1 100%;
      max-width: 100%;
  }

  .ecommerce-content-heading {
      font-size: 1.8em;
  }

  .ecommerce-content-description {
      font-size: 0.9em;
  }
}



/* Hero Section 2 Styles */
#hero-section3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.web3 {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title3 {
  font-size: 32px;
  color: orange;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description3 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.hero-video3 {
  flex: 1;
  text-align: center;
}

.hero-video3 iframe {
  width: 90%;
  height: 300px;
  border: none;
  padding-top: 40px;
}

/* Hero Section 3 Styles */
#hero-section-wordpress13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #1e1e2e, #3a3a4a);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.wordpress13-text {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title-wordpress13 {
  font-size: 32px;
  color: #f39c12;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description-wordpress13 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.wordpress13-video {
  flex: 1;
  text-align: center;
}

.wordpress13-video iframe {
  width: 60%;
  height: 200px;
  border: none;
  padding-top: 40px;
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
  #hero-section3, #hero-section-wordpress13 {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
  }

  .hero-title3, .hero-title-wordpress13 {
    font-size: 28px;
    text-align: left;
  }

  .hero-description3, .hero-description-wordpress13 {
    font-size: 14px;
    text-align: left;
  }

  .hero-video3, .wordpress13-video {
    margin-top: 20px;
    width: 100%;
  }

  .hero-video3 iframe, .wordpress13-video iframe {
    height: 250px;
  }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  #hero-section3, #hero-section-wordpress13 {
    padding: 100px 20px;
    align-items: flex-start;
  }

  .hero-title3, .hero-title-wordpress13 {
    font-size: 24px;
    text-align: left;
  }

  .hero-description3, .hero-description-wordpress13 {
    font-size: 12px;
    text-align: left;
  }

  .hero-video3 iframe, .wordpress13-video iframe {
    height: 200px;
  }
}
/* About Us Section 3 */
#about-us-section4 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  color: #fff;
}

.about-us-container4 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: left;
}

/* Left Side with Circular Images */
.about-us-left4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top-circle4 {
  margin-bottom: 20px;
}

.about-frame-group4 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Circular Frame Styling */
.about-frame4 {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimation3 8s infinite linear;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame4:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes spinAnimation4 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Image Inside Frame */
.about-frame4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Text Section */
.about-us-right4 {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading4 {
  font-size: 36px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description4 {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
  #about-us-section4 {
    flex-direction: column;
    padding: 20px;
  }
  .about-frame4 {
    width: 120px;
    height: 120px;
  }
  .about-heading4 {
    font-size: 28px;
  }
  .about-description4 {
    font-size: 14px;
  }
  .about-frame-group4 {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-heading4 {
    font-size: 22px;
  }
  .about-description4 {
    font-size: 12px;
  }
  .about-frame4 {
    width: 100px;
    height: 100px;
  }
}

/* Services Section 4 */
#custom-services5 {
  background-color: #2a2a3c;
  padding: 70px 5%;
  text-align: center;
}

.custom-main-heading5 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.custom-main-description5 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.custom-service-cards5 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* Increased gap between boxes */
  justify-content: center;
}

.custom-service-card5 {
  flex: 0 1 calc(33.33% - 30px); /* 3 boxes per row with space */
  max-width: calc(33.33% - 30px);
  box-sizing: border-box;
}

.custom-service-box5 {
  background-color: #1e1e2e;
  padding: 25px;
  border: 2px solid orange;
  text-align: left;
  margin-bottom: 15px; /* Add margin to prevent stacking overlap */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-box5:hover {
  border-color: #fafafa;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.custom-service-box5 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.custom-service-box5 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

.custom-service-icon5 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-service-card5 {
    flex: 0 1 calc(50% - 20px); /* 2 boxes per row on smaller screens (tablets) */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .custom-service-card5 {
    flex: 0 1 100%; /* 1 box per row on mobile */
    max-width: 100%;
  }
}

/* SEO Section */
#seo-content6 {
  background: linear-gradient(135deg, #2a2a3c, #1e1e2e);
  padding: 70px 5%;
  text-align: center;
}

.seo-content-heading6 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.seo-content-description6 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.seo-steps6 {
  display: flex;
  flex-wrap: wrap; /* Allows boxes to wrap on smaller screens */
  justify-content: center; /* Center-align boxes */
  gap: 20px; /* Space between boxes */
}

.seo-step6 {
  flex: 1 1 calc(25% - 20px); /* 4 boxes per row on larger screens */
  max-width: calc(25% - 20px); /* Ensure consistent width */
  box-sizing: border-box;
  background: linear-gradient(135deg, #1e1e2e, #2a2a3c);
  padding: 25px;
  text-align: center;
  border: 2px solid #ffffff; /* White border */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
 /* Smooth edges */
}

.seo-step6:hover {
  border-color: orange; /* Orange border on hover */
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.seo-icon6 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

.seo-step6 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.seo-step6 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

/* Tablet View (2 boxes per row) */
@media (max-width: 992px) {
  .seo-step6 {
    flex: 1 1 calc(50% - 20px); /* 2 boxes per row on tablets */
    max-width: calc(50% - 20px);
  }

  .seo-content-heading6 {
    font-size: 2em;
  }

  .seo-content-description6 {
    font-size: 1em;
  }
}

/* Mobile View (1 box per row) */
@media (max-width: 576px) {
  .seo-step6 {
    flex: 1 1 100%; /* 1 box per row on mobile */
    max-width: 100%;
  }

  .seo-content-heading6 {
    font-size: 1.8em;
  }

  .seo-content-description6 {
    font-size: 0.9em;
  }
}


/* Hero Section 2 Styles */
#hero-section2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  color: #fff;
  flex-wrap: wrap;
}

/* Text Section */
.web2 {
  max-width: 500px;
  margin-right: 20px;
}

.hero-title2 {
  font-size: 32px; /* Increased font size */
  color: orange; /* Orange Color */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.hero-description2 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

/* Video Section */
.hero-video2 {
  flex: 1;
  text-align: center;
}

.hero-video2 iframe {
  width: 60%;
  height: 200px; /* Standard height */
  border: none;
  padding-top: 40px;
 
}

/* Tablet Responsive Design */
@media (max-width: 768px) {
  #hero-section2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
  }

  .hero-title2 {
    font-size: 28px;
    text-align: left;
  }

  .hero-description2 {
    font-size: 14px;
    text-align: left;
  }

  .hero-video2 {
    margin-top: 20px;
    width: 100%;
  }

  .hero-video2 iframe {
    height: 250px; /* Adjusted for tablet */
  }
}

/* Mobile Responsive Design */
@media (max-width: 480px) {
  #hero-section2 {
    padding: 100px 20px;
    align-items: flex-start;
  }

  .hero-title2 {
    font-size: 24px;
    text-align: left;
  }

  .hero-description2 {
    font-size: 12px;
    text-align: left;
  }

  .hero-video2 iframe {
    height: 200px; /* Adjusted for mobile */
  }
}

/* About Us Section 3 */
#about-us-section3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  color: #fff;
}

.about-us-container3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: left;
}

/* Left Side with Circular Images */
.about-us-left3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
 
}

.top-circle3 {
  margin-bottom: 20px;
}

.about-frame-group3 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Circular Frame Styling */
.about-frame3 {
  width: 150px;
  height: 150px;
  border: 4px solid orange;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a3c, #4a4a5e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: spinAnimation3 8s infinite linear;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-frame3:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes spinAnimation3 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Image Inside Frame */
.about-frame3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Text Section */
.about-us-right3 {
  max-width: 600px;
  margin-left: 20px;
}

.about-heading3 {
  font-size: 36px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
}

.about-description3 {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
  #about-us-section3 {
    flex-direction: column;
    padding: 20px;
  }
  .about-frame3 {
    width: 120px;
    height: 120px;
  }
  .about-heading3 {
    font-size: 28px;
  }
  .about-description3 {
    font-size: 14px;
  }
  .about-frame-group3 {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-heading3 {
    font-size: 22px;
  }
  .about-description3 {
    font-size: 12px;
  }
  .about-frame3 {
    width: 100px;
    height: 100px;
  }
}

/* Services Section 4 */
#custom-services4 {
  background-color: #2a2a3c;
  padding: 70px 5%;
  text-align: center;
}

.custom-main-heading4 {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.custom-main-description4 {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.custom-service-cards4 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* Increased gap between boxes */
  justify-content: center;
}

.custom-service-card4 {
  flex: 0 1 calc(33.33% - 30px); /* 3 boxes per row with space */
  max-width: calc(33.33% - 30px);
  box-sizing: border-box;
}

.custom-service-box4 {
  background-color: #1e1e2e;
  padding: 25px;
  border: 2px solid orange;
  text-align: left;
  margin-bottom: 15px; /* Add margin to prevent stacking overlap */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-box4:hover {
  border-color: #fafafa;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.custom-service-box4 h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.custom-service-box4 p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

.custom-service-icon4 {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-service-card4 {
    flex: 0 1 calc(50% - 20px); /* 2 boxes per row on smaller screens (tablets) */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .custom-service-card4 {
    flex: 0 1 100%; /* 1 box per row on mobile */
    max-width: 100%;
  }
}

/* Web Content Section */
#web-content {
  background-color: #2a2a3c;
  padding: 70px 5%;
  text-align: center;
}

.web-content-heading {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.web-content-description {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.content-steps {
  display: flex;
  justify-content: space-between; /* Align boxes in a single row */
  gap: 30px; /* Increased gap between boxes */
}

.content-step {
  flex: 1 1 calc(25% - 30px); /* Ensure 4 boxes per row */
  box-sizing: border-box;
  background-color: #2a2a3c;
  padding: 25px;
  text-align: center;
  border: 2px solid #ffffff; /* Set white border by default */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.content-step:hover {
  border-color: orange; /* Change border color to orange on hover */
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.content-icon {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

.content-step h3 {
  font-size: 1.5em;
  color: orange;
  margin-bottom: 10px;
}

.content-step p {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-step {
    flex: 0 1 calc(50% - 20px); /* 2 boxes per row on smaller screens (tablets) */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .content-step {
    flex: 0 1 100%; /* 1 box per row on mobile */
    max-width: 100%;
  }
}



/* Hero Section Styles for Reviews */
#hero-reviews {
  background: url('<?php echo get_template_directory_uri(); ?>/assets/img/hero-reviews.jpg') no-repeat center center/cover;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden; /* To keep content inside the hero from overflowing */
}

/* Hero Overlay */
.sticky-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews Section */
#reviews {
  padding: 50px 10%;
  background-color: #1e1e2e;
}

.reviews-container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  color: orange;
}

.review-box1 {
  background-color: #1e1e2e;
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-image1 img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-rating1 .star1 {
  color: #ffb400;
  font-size: 20px;
}

.review-text1 {
  font-size: 1em;
  margin: 15px 0;
  font-style: italic;
}

.reviewer-name1 {
  font-weight: bold;
  margin-top: 10px;
  color: orange;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-container1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .reviews-container1 {
    grid-template-columns: 1fr;
  }
}



/* FAQ Section Container */
.faq-section-container {
  width: 100%;
  padding: 0 20px;
}

/* Header Section */
.faq-header {
  margin-top: 30px;
  text-align: center;
  padding-top: 100px;
}

.faq-icon {
  font-size: 60px;
  color: orange;
  margin-bottom: 20px;
}

.faq-header h2 {
  font-size: 32px;
  color: orange;
  margin-bottom: 10px;
  text-align: center;
}

.faq-header p {
  font-size: 16px;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* FAQ Item */
.faq-item {
  background: linear-gradient(135deg, #2a2a3c, #3a3a4f);
  border: 2px solid white;
  padding: 15px 20px;
  overflow: hidden;
  transition: border 0.3s, max-height 0.3s ease;
  text-align: left;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Add border color when any part of the FAQ item gets focus */
.faq-item:focus-within {
  border-color: orange;
  outline: none;
}

/* FAQ Title */
.faq-item .faq-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* FAQ Description (Hidden by Default) */
.faq-item .faq-description {
  font-size: 14px;
  margin-top: 10px;
  color: #bbb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Show Description when FAQ item or its children are focused */
.faq-item:focus-within .faq-description {
  max-height: 200px; /* Adjust height based on content */
}

/* Media Queries for Mobile and Tablet Views */

/* For Mobile (Up to 480px) */
@media screen and (max-width: 480px) {
  .faq-header h2 {
    font-size: 24px; /* Reduce header size */
  }

  .faq-header p {
    font-size: 14px; /* Adjust paragraph size */
    padding: 0 20px;
  }

  .faq-section {
    padding-left: 10px; /* Add left gap */
    padding-right: 10px; /* Add right gap */
  }

  .faq-item {
    padding: 12px 15px; /* Adjust padding for smaller screens */
  }

  .faq-item .faq-title {
    font-size: 16px; /* Smaller font size for titles */
  }

  .faq-item .faq-description {
    font-size: 13px; /* Smaller font size for descriptions */
  }

  .faq-section {
    gap: 15px; /* Reduce gap between FAQ items */
  }
}

/* For Tablet (Up to 768px) */
@media screen and (max-width: 768px) {
  .faq-header h2 {
    font-size: 28px; /* Slightly smaller header size */
  }

  .faq-header p {
    font-size: 15px; /* Adjust paragraph size */
    padding: 0 30px;
  }

  .faq-section {
    padding-left: 20px; /* Add left gap */
    padding-right: 20px; /* Add right gap */
  }

  .faq-item {
    padding: 14px 18px; /* Adjust padding for tablet screens */
  }

  .faq-item .faq-title {
    font-size: 17px; /* Smaller font size for titles */
  }

  .faq-item .faq-description {
    font-size: 14px; /* Adjust description size */
  }

  .faq-section {
    gap: 18px; /* Adjust gap between FAQ items */
  }
}
/* Blog Section */
#blog {
  padding: 40px 5%;
  background: #f7f7f7; /* Background color */
}

/* Blog Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-text {
  max-width: 100%;
  text-align: left;
}

.blog-heading {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.blog-heading .highlight {
  color: #f39c12;
}

.blog-description {
  font-size: 1.1em;
  color: #070606;
  line-height: 1.5;
  text-align: left;
}

/* Button */
.blog-btn {
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0; /* Removed rounded corners */
  font-size: 1em;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  text-align: left;
}

.blog-btn:hover {
  background: #e67e22;
  transform: scale(1.05);
}

/* Blog Grid */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Blog Item */
.blog-item {
  background: #fff;
  border: 2px solid #f39c12;
  border-radius: 0; /* Removed rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  padding: 20px;
  text-align: left;
  color: #000000;
}

.blog-item:hover {
  border-color: #e67e22;
  transform: scale(1.05);
}

/* Blog Image */
.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Blog Info */
.blog-info {
  padding: 15px;
}

.blog-info h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
}

.blog-info p {
  font-size: 0.9em;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  text-align: left;
}

/* Read More Button */
.blog-info .blog-read-btn {
  display: inline-block;
  margin-top: 10px;
  background: #f39c12;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0; /* Removed rounded corners */
  font-size: 0.9em;
}

.blog-info .blog-read-btn:hover {
  background: #e67e22;
  transform: scale(1.05);
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-text {
    max-width: 100%;
  }

  .blog-heading {
    font-size: 2em;
  }

  .blog-description {
    max-width: 100%;
  }

  .blog-btn {
    margin-top: 10px;
    width: auto;
    text-align: left;
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-item {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .blog-heading {
    font-size: 1.8em;
  }

  .blog-btn {
    width: auto;
    text-align: left;
  }
}

/* === Project Section Title === */
.projects-title-2222 {
 
  color: black;
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  background: orange;
  margin-left: 70px;
  margin-bottom: 20px;
  margin-top: 120px; /* Top padding added */
  letter-spacing: 1px;
}

/* === Projects Grid Container === */
.projects-container-2222 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 boxes per row */
  gap: 20px;
  margin: 0 auto;
  padding-top: 50px;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

/* === Project Box === */
.project-2222 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.project-2222 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-2222:hover img {
  transform: scale(1.1);
}

/* === Overlay on Hover === */
.project-2222 .overlay-2222 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 16px;
}

.project-2222:hover .overlay-2222 {
  opacity: 1;
}

/* === Icon and Heading Inside Overlay === */
.overlay-2222 .icon-heading-2222 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.overlay-2222 .icon-2222 {
  font-size: 20px;
}

/* === Project Link Styling === */
.project-link-2222 {
  text-decoration: none;
  color: inherit;
}

/* === Responsive Breakpoints === */
@media (max-width: 991px) {
  .projects-container-2222 {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .projects-container-2222 {
    grid-template-columns: 1fr; /* 1 column on phones */
  }
}
