/* Global Styles */
:root {
    --primary-color: #0c4da2;
    --secondary-color: #ff6b00;
    --light-gray: #f5f5f5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color:white;
    background-color: black;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: black;
}

/* Header Styles */
#header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(15, 66, 129); 
}
#header  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(15, 66, 129);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.logo img {
    height: 60px;
    width: auto;
    margin-right: 50px;
}

#nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav ul li {
    position: relative; 
    margin-left: 60px;
}

#nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

#nav ul li a:hover {
    color: rgb(171, 171, 173);
}

/* nav services dropdown css */
#nav .dropdown {
    position: relative;
}
#nav .dropdown-icon {
    font-size: 16px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}
#nav .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}
#nav .dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    background:rgb(15 66 129); 
    /* background-color: var(--primary-color); */
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}
#nav .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#nav .dropdown .submenu li {
    list-style: none;
}
#nav .dropdown .submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.3s ease;
}
#nav .dropdown .submenu li a:hover {
    color: rgb(171, 171, 173);
	background-color:rgb(15 66 129);
    /* background-color: var(--primary-color); */
}

#firstsection {
    position: relative;
    width: 100%;
    /* min-height: 80vh; */
    background-image: url(/images/client-image.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
#firstsection::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2;
}
#firstsection > * {
    position: relative;
    z-index: 3;
}
#logo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 170px 60px 60px 160px;
}
#logo img {
    width: 244px;
    
}
#firstsection h2 {
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    padding-left: 130px;
}
#firstsection h1 {
    padding-left: 210px;
    color: white;
    padding-top: 4vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5vw;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}
#firstsection h4 {
    padding-left: 210px;
    color: #FFD700;
    font-style: italic; 
    padding-top: 1.5vw;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
} 
/* Services Section */


.services {
    padding: 100px 0;
    background: black;
    color: white;
}



.section-header {
    text-align: center;
    background-color: black;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.section-header p {
    color:white;
    font-size: 16px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}
.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}
.service-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.service-card p {
    color:white;
    font-size: 15px;
    line-height: 1.6;
}
.service-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.2s;
}

.service-card-link:hover {
	transform: translateY(-5px);
}


/* About Section */
.about {
    padding: 100px 0;
    background-color: black;

}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
   color: white;
}
.stats {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px; 
}
.stat {
    display: flex;
    align-items: center;
    gap: 30px; 
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Price-Section1 */
.fourthsection {
    padding: 100px 50px;
    background-color: black;
    text-align: center;
}
.fourthsection h5 {
    font-size: 18px;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.fourthsection h2 {
    font-size: 45px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}
#price-select {
    font-size: 15px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    max-width: 700px;
    margin: 0 auto 50px;
}
/* Price-section2 */
 .fivesection {
   display: flex;
   max-width: 1400px;
   margin-top: 40px;
   margin-bottom: 20px;
   justify-self: center;
}
.fivesection > div {
    height: 550px;
}
.fivesection .price-box1{
    flex: 33%;
    width:33%;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-right: 20px;
}
.fivesection .price-box1 h4 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 25px;
    color:white;
}
.fivesection .price-box1 h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
    color: white;
}
.fivesection .price-box1 h2 span {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}
.fivesection .price-box1 button {
    /* background-color: #4f46e5; */
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    padding: 15px 60px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 40px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}
.fivesection .price-box1 button :hover {
    background-color: #0800ff;
}
.fivesection .price-box1 p {
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
}
.fivesection .price-box1 ul {
    list-style: none;
    text-align: left;
}
.fivesection .price-box1 ul li {
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}
.fivesection .price-box1 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-size: 14px;
    letter-spacing: 10px;
}
/* price-box2 */
.fivesection .price-box2{
    flex: 33%;
    width:33%;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-right: 20px;
}
.fivesection .price-box2 h4 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 25px;
    color:white;
}
.fivesection .price-box2 h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
    color: white;
}
.fivesection .price-box2 h2 span {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
}
.fivesection .price-box2 button {
    /* background-color: #4f46e5; */
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    padding: 15px 60px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.fivesection .price-box2 button :hover {
    background-color: #3f3bd1;
}
.fivesection .price-box2 p {
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    color:white;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.fivesection .price-box2 ul {
    list-style: none;
    text-align: left;
}
.fivesection .price-box2 ul li {
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}
.fivesection .price-box2 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-size: 14px;
    letter-spacing: 10px;
}
/* price-box3 */
.fivesection .price-box3{
    flex: 33%;
    width:33%;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.fivesection .price-box3 h4 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 25px;
    color:white;
}
.fivesection .price-box3 h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom:40px;
    color:white;
}
.fivesection .price-box3 h2 span {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    margin-bottom:80px;
}
.fivesection .price-box3 button  {
    /* background-color: #4f46e5; */
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 15px 60px;
    border-radius: 5px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px; 
    margin-bottom: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.fivesection .price-box3 button :hover {
    background-color: #3f3bd1;
}
.fivesection .price-box3 p {
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    color:white;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 20px;
}
.fivesection .price-box3 ul {
    list-style: none;
    text-align: left;
}
.fivesection .price-box3 ul li {
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}
.fivesection .price-box3 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-size: 14px;
    letter-spacing: 10px;
}
.send-message-btn {
    display: inline-block;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
  }
  
  .send-message-btn:hover {
    background-color: #0056b3;
    border-color: #004f9f;
  }
/* FAQ */
.faq-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-self: center;
    gap: 40px;
    font-family: Arial, Helvetica, sans-serif;
    background: black;
  }
.faq-section  .faq-left {
    flex: 1 1 300px;
    padding-left: 40px;
}
.faq-section .faq-left h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}
.faq-section .faq-left p {
    font-size: 15px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 18px;
    color:white;
}
.faq-section .support-link {
    color: #5f42d6;
    font-weight: 500;
    text-decoration: none;
}
  
.faq-section .support-link:hover {
    text-decoration: underline;
    color: white;
}
.faq-right {
    flex: 2 1 400px;
}
.faq-item1 {
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.faq-item1 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color:white;
}
.faq-item1 p {
    font-size: 15px;
    color: white;
    line-height: 18px;
}
.faq-item2 {
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.faq-item2 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color:white;
}
.faq-item2 p {
    font-size: 15px;
    color: white;
    line-height: 18px;
}
.faq-item3 {
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.faq-item3 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}
.faq-item3 p {
    font-size:15px;
    color: white;
    line-height: 18px;
    
}
.faq-item4 {
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.faq-item4 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color:white;
}
.faq-item4  p {
    font-size: 15px;
    color:white;
    line-height: 18px;
}
/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: black;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: black;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon i {
    font-size: 30px;
    color: var(--white);
}
.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}
/* Process Section */
.process {
    padding: 100px 0;
    /* background: var(--light-gray); */
    background-color: black;
}
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}
.process-step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 100px;
}
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}
.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: black;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px;
}
.quote-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}
.testimonial-content p {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 18px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.testimonial-controls button {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-controls button:hover {
    background: var(--secondary-color);
}
/* Contact Section */
.contact {
    padding: 100px 0;
    /* background: var(--light-gray); */
    background-color: black;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.contact-details {
    margin-top: 30px;
}
.detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.detail i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form textarea {
    height: 150px;
    resize: vertical;
}
/* Footer */
/* ......................................................................................container.................................. */
    
.lastfooer{

    background-color: rgb(15, 66, 129); 
}

#footer {
    background: rgb(15, 66, 129);
    color: var(--white);
    padding: 50px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}
.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: var(--white);
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--white);
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}
.social-icons a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Responsive Media Queries */
@media (max-width: 786px) {
    /* First Section */
    #firstsection {
        height: auto;
        padding: 150px 0 60px;
    }
    
    #logo {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    #firstsection h1,
    #firstsection h2,
    #firstsection h4 {
        padding-left: 0;
        text-align: center;
    }
    
    #firstsection h1 {
        font-size: 6vw;
        padding-top: 30px;
    }
    
    #firstsection h2 {
        font-size: 5vw;
    }
    
    #firstsection h4 {
        font-size: 5vw;
        padding-top: 20px;
    }
    
    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
        color: white;
    }
    .pp{
        color: white;
    }
    /* About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .stats {
        align-items: center;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 80px 20px;
        background-image: cover;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    } 
    
    /* Pricing Section */
    .fourthsection {
        padding: 60px 20px;
    }
    
    .fourthsection h2 {
        font-size: 32px;
        color: white;
    }
    
    .fivesection {
        flex-direction: column;
        align-items: center;
    }
    
    .fivesection > div {
        width: 100% !important;
        max-width: 400px;
        margin: 0 0 30px 0 !important;
    }
    
    /* FAQ Section */
    .faq-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .faq-section .faq-left {
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    /* Why Choose Us Section */
    .why-choose {
        padding: 60px 0;
    }
    
    /* Process Section */
    .process {
        padding: 60px 0;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        padding-left: 70px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    /* First Section */
    #firstsection h1 {
        font-size: 8vw;
    }
    
    #firstsection h2 {
        font-size: 6vw;
    }
    
    #firstsection h4 {
        font-size: 6vw;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Boxes */
    .fivesection > div {
        height: auto;
        padding: 20px;
    }
    
    .fivesection .price-box1 h2,
    .fivesection .price-box2 h2,
    .fivesection .price-box3 h2 {
        margin: 20px 0;
    }
    
    .fivesection .price-box1 button,
    .fivesection .price-box2 button,
    .fivesection .price-box3 button {
        margin: 20px auto;
        justify-content: center;
    }
    
    /* Testimonials */
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    /* FAQ */
    .faq-section .faq-left h2 {
        font-size: 28px;
    }
    
    .faq-item1 h4,
    .faq-item2 h4,
    .faq-item3 h4,
    .faq-item4 h4 {
        font-size: 20px;
    }
}