html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.main-body{
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: white;
}

.nav-wrapper{
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: space-around;
}

.logo-wrapper{
    display: flex;
}

.logo-img img{
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.logo-text{
    margin-left: 10px;
    cursor: pointer;
}
.logo-text h2{
    padding: 10px 0;
    text-align: center;
}

.link-wrapper span{
    display: none;
}


@media screen and (max-width: 768px) {
    .link-wrapper a{
        display: none;
    }

    .link-wrapper span{
        display: block;
        margin-left: 10px;
    }
}


/* Popup Styles */
.nav-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
}

.close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
}

.popup-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.popup-menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-popup.active .popup-menu li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation for each menu item */
.popup-menu li:nth-child(1) { transition-delay: 0.1s; }
.popup-menu li:nth-child(2) { transition-delay: 0.2s; }
.popup-menu li:nth-child(3) { transition-delay: 0.3s; }
.popup-menu li:nth-child(4) { transition-delay: 0.4s; }

.popup-menu a {
    color: black;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.popup-menu a:hover {
    color: #ed365a;
}

/* Optional: Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .popup-menu a {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    .popup-menu a {
        font-size: 1.5rem;
    }
    
    .popup-content {
        padding: 1rem;
    }

    .close-popup {
        top: 1rem;
        right: 1rem;
    }
}



.link-wrapper{
    padding: 30px 0;
}
.link-wrapper a{
    text-decoration: none;
    color: black;
    padding: 20px;
}

.header-wrapper{
    text-align: center;
}

.header-wrapper h1{
    text-align: center;
    text-decoration: none;
    font-size:38px;

}

.header-wrapper span{
    color: #ed365a;
}

.header-wrapper p{
    font-size: 16px;
    color: #333;
}

.button-wrapper{
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
.button-wrapper{
    display: block;
}

.button-wrapper a{
    margin-top: 10px;
}
}

.btn {
    display: inline-block;
    padding: 10px 60px;
    color: white;
    background-color: black;
    text-decoration: none;
}
.btn:hover {
    background-color: #0056b3;
}

.btn-2 {
    display: inline-block;
    padding: 10px 60px;
    color: white;
    background-color: #ed365a;
    text-decoration: none;
}
.btn-2:hover {
    background-color: #0056b3;
}


.grad-img-wrapper{
    width: 100%;
    height: 510px;
    margin-right: auto;
    margin-left: auto;
}

.grad-img-wrapper .img-wrapper{
    margin-top: 10px;
    background-image: url(graduates-celebrating-at-white-building.jpg);
    height: 500px;
    width: 80%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: auto;
    margin-left: auto;
    border-radius: 50px;
}

@media screen and (max-width: 600px){
    .grad-img-wrapper .img-wrapper{
        height: 300px;
    }
}



.services-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background: white;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service button {
    background: #ed365a;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.service button:hover {
    background: #ed365a;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.popup-content h2 {
    margin-bottom: 15px;
    color: #ed365a;
    font-size: 35px;
}




.services-section2 {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333;
}

.services-section2 h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.services-section2 h2 span {
  color: #ed365a; /* Highlight color */
}

.services-section2 p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Services List Styling */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-item h3 span {
  color: #ed365a; /* Highlight color */
}

.service-item p {
  font-size: 1rem;
  color: #666;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
  }


}

@media (max-width: 480px) {
  .service-item {
    flex: 1 1 100%; /* 1 item per row */
  }
}



.quote-section {
background: #000;
color: white;
padding: 4rem 2rem;
text-align: center;
}

.quote-text {
font-size: 2rem;
line-height: 1.4;
max-width: 900px;
margin: 0 auto;
}

.highlight {
color: #ed365a;
}

.newsletter-section {
background: #f5f5f5;
padding: 2rem;
text-align: center;
border-radius: 10px;
max-width: 800px;
margin: 2rem auto;
}

.subscriber-count {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.newsletter-text {
color: #666;
margin-bottom: 1.5rem;
}

.join-button {
background: #000;
color: white;
padding: 0.8rem 2rem;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}

/*FOOTER STARTS HERE */
/*FOOTER STARTS HERE */

/* Footer */
footer {
    width: 100%;
    background: linear-gradient(to bottom, #fce4e9 0%, #ffffff 100%);
    border-top: 1px solid #ed365a;
    margin-top: 80px;
    padding: 60px 0 0 0;
}

.footer-content{
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

footer .logo-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .logo-container .logo-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

footer .logo-container .logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .logo-container .logo-text a {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

footer .logo-container .logo-text a:hover {
    color: #ed365a;
}

footer .logo-container .logo-text span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.footer-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ed365a;
    border-radius: 2px;
}

footer .nav-links,
footer .social-links,
footer .privacy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .nav-links a,
footer .social-links a,
footer .privacy a {
    font-size: 15px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

footer .nav-links a:hover,
footer .social-links a:hover,
footer .privacy a:hover {
    color: #ed365a;
    padding-left: 8px;
}

footer .social-links a::before {
    content: '→';
    margin-right: 8px;
    color: #ed365a;
    opacity: 0;
    transition: opacity 0.3s;
}

footer .social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #ed365a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #002aad;
}
/* Tablet Footer Responsive */
@media screen and (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    footer .logo-container {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }

    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer .nav-links,
    footer .social-links,
    footer .privacy {
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 600px){
    /* Mobile Footer */
    footer {
        padding: 40px 0 0 0;
    }

    .footer-content {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 30px;
    }

    footer .logo-container {
        grid-column: 1;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        text-align: center;
    }

    footer .logo-container .logo-img {
        width: 70px;
        height: 70px;
    }

    .footer-description {
        text-align: center;
        font-size: 14px;
    }

    footer .nav-links,
    footer .social-links,
    footer .privacy {
        align-items: center;
    }

    .footer-section-title {
        text-align: center;
    }

    footer .nav-links a:hover,
    footer .social-links a:hover,
    footer .privacy a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px 10px;
    }
}


/* Tablets */
@media screen and (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
    }

    .newsletter-section {
        margin: 2rem 1rem;
    }

    .subscriber-count {
        font-size: 1.5rem;
    }
}

/* Large phones */
@media screen and (max-width: 576px) {
    .quote-section {
        padding: 3rem 1rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .brand {
        justify-content: center;
    }



    .newsletter-section {
        padding: 1.5rem;
    }

    .subscriber-count {
        font-size: 1.3rem;
    }

    .join-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Small phones */
@media screen and (max-width: 375px) {
    .quote-text {
        font-size: 1rem;
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .subscriber-count {
        font-size: 1.2rem;
    }
}




.form-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"], input[type="email"], input[type="tel"] {
    
    font-size: 14px;
    border-radius: 6px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #dee1e2;
    color: rgb(14, 14, 16);
    background: #dee1e2;
    display: block;
    height: 36px;

}

:hover {
    border-color: #ccc;
}
:focus{
    border-color: #9147ff;
    background: #fff;
}
    



.checkbox-group {
    margin: 20px 0;
}

.checkbox-group h3 {
    margin-bottom: 10px;
    color: #333;
}

.checkbox-group label {
    display: block;
    margin: 5px 0;
}

button {

    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 24px;
    border: none;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: linear-gradient(to right, rgb(230, 30, 77) 0%, rgb(227, 28, 95) 50%, rgb(215, 4, 102) 100%);
    color: #fff;
}

button:hover {
    background-color: #ed365a;
    color: white;
}


.quote-section2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
}

.quote-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quote-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.highlight {
    color: #ed365a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-button {
    padding: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-button:hover {
    border-color: #ed365a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: blue;
}

.service-button h3 {
    font-size: 1.5rem;
    color: #333;
}

.plus-icon {
    color: #ed365a;
    font-size: 1.5rem;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

/* Form Styles */
.form-container {
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.form-container h1 {
    margin-bottom: 1.5rem;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-weight: 500;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-group h3 {
    margin-bottom: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

button[type="submit"] {
    background: #ed365a;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

button[type="submit"]:hover {
    background: #ed365a;
}

.not-sure {
    text-align: center;
    margin-top: 2rem;
}

.not-sure a {
    color: #ed365a;
    text-decoration: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-title {
        font-size: 2rem;
    }

    .service-button {
        padding: 1.5rem;
    }
}


.headingpopup{
    font-size: 25px;
}

/* Contact Page begins here*/ 

.contact-header{
    width: 80%;
    margin: 0px auto 100px;
}

.contact-header h1{
    text-align: center;
    text-decoration: none;
    font-size:64px;
}

.contact-header h1 span{
    font-size: 15PX;
    color: #ed365a;
}

.contact-header p{
    text-align: center;
    justify-content: center;
}

.contact-header-content{
    width: 70%;
    margin: 0 auto;
    padding: 20px;
}

.contact-header-button-wrapper{
    width: 40%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.contact-form-content-container{
    width: 80%;
    margin: 0 auto 100px;
}

.contact-form-content-container h1{
    text-decoration: none;
    font-size: 38px;
}

.contact-form-content-container p{
    text-align: center;
    font-size: 18px;
    color: #555;
    font-weight: 100;
}

.contact-form-content-container form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;    
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.contact-form-content-container input{
    width: 40%;
    font-size: 14px;
    border-radius: 0px;
    line-height: 1.5;
    padding: 5px 10px;
    border: none;
    border-bottom: 1px solid #666;
    background: transparent;    
    height: 50px;
    color: #555;
}

.contact-form-content-container input:focus{
    background-color: #ed365a;
    outline: none;
}

.contact-form-content-container input:focus::placeholder{
    color: white;
}

.contact-form-content-container select{
    width: 41.8%;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 10px;
    border: none;
    border-bottom: 1px solid #666;
    background: transparent;    
    height: 50px;
    color: #555;
}

.contact-form-content-container textarea{
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 10px;
    border: none;
    border-bottom: 1px solid #666;
    background: transparent;    
    height: 50px;
    color: #555;
    resize: none;
}

.contact-header-button-wrapper a{
    color: #ed365a;
    font-size: 25px;
}

.contact-form-content-container button{
    font-weight: 100;
    border: 1px solid transparent;
    transition: .8s;
}

.contact-form-content-container button:hover{
    border: 1px solid #ed365a;
    background-color: transparent;
    color: #ed365a;
}

@media screen and (max-width: 1300px) {

    .contact-header h1{
        font-size:54px;
    }

    .contact-header{
        width: 90%;
    }



}

@media screen and (max-width: 1200px) {

    .contact-header h1{
        font-size:40px;
    }

    .contact-header{
        width: 90%;
    }

}


@media screen and (max-width: 700px) {

    .contact-form-content-container form{
        display: block;
    }

    .contact-form-content-container input{
        width: 100%;
        margin: 20px 0;
    }

    .contact-form-content-container select{
        width: 100%;
        margin: 20px 0;
    }

    .contact-form-content-container textarea{
        margin: 20px 0;
    }

}

/* About Page Begins Here*/

.body-wrapper-about{
    width: 80%;
    margin: 100px auto;
}

.about-item{
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.about-item h1{
    text-decoration: none;
    font-size: 48px;
}

.about-item p{
    font-size: 20px;
    color: #555;
}

.spont{
    color: #ed365a;
}

.body-wrapper-about a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    color: #ddd;
    padding: 20px;
    background-color: #ed365a;
    width: 50%;
    margin: 100px auto;
    font-size: 20px;
    border: 1px solid transparent;
    transition: .9s;
}

.body-wrapper-about a:hover{
    border: 1px solid #ed365a;
    background-color: transparent;
    color: #ed365a;
}