/* Variables */
:root {
    --primary: #d70077;
    --secondary: #d29a39;
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
    --transition: all 0.3s ease;
    --font-family: 'Montserrat', sans-serif;

    /* New icon colors */
    --icon-blue: #007bff;
    --icon-green: #28a745;
    --icon-orange: #fd7e14;
    --icon-purple: #6f42c1;
    --icon-pink: #e83e8c;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    font-weight: 400;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 600;
}

h1 {
    font-weight: 700;
}

.btn {
    font-family: var(--font-family);
    font-weight: 500;
}

.nav-links a {
    font-family: var(--font-family);
    font-weight: 500;
}

.form-card h2 {
    font-family: var(--font-family);
    font-weight: 600;
}

.form-card p {
    font-family: var(--font-family);
    font-weight: 400;
}

.error-message {
    font-family: var(--font-family);
    font-weight: 500;
}

.thank-you-popup h3 {
    font-family: var(--font-family);
    font-weight: 600;
}

.thank-you-popup p {
    font-family: var(--font-family);
    font-weight: 400;
}

.thank-you-popup .close-popup {
    font-family: var(--font-family);
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    max-width: 60%;
    color: var(--white);
    position: relative;
    background: none;
    padding: 0;
}

.hero-left .logo img {
    position: absolute;
    top: 3rem;
    left: 4rem;
    height: 60px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40%;
    background-color: var(--white);
    padding: 2rem;
    color: var(--black);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: left;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-align: left;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-card {
    background: var(--white);
    color: var(--black);
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    box-shadow: none;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    text-align: left;
}

.form-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #666;
    text-align: left;
}

.consultation-form .form-group {
    margin-bottom: 0.8rem;
}

.consultation-form .form-group-half {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.input-container {
    position: relative;
    width: 100%;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form textarea,
.consultation-form select {
    width: 100%;
    padding: 1.2rem 0.9rem 0.4rem;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 0.95rem;
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.consultation-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.2-6.5H18.6c-5%200-9.3%201.8-13.2%206.5-3.9%204.7-6%2010.5-6%2016.9%200%206.5%202.1%2012.2%206%2016.9l118.9%20118.2c4.7%204.5%2010.4%206.8%2016.9%206.8s12.2-2.3%2016.9-6.8L287%20103.2c3.9-4.7%206-10.4%206-16.9.1-6.4-2-12.2-5.9-16.9z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.consultation-form select[value=""] {
    color: #a0a0a0;
}

.input-container label {
    position: absolute;
    left: 0.9rem;
    top: 0.8rem;
    color: #a0a0a0;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Float label when focused or when input has content */
.consultation-form input:focus + label,
.consultation-form input:not(:placeholder-shown) + label,
.consultation-form select:focus + label,
.consultation-form select:valid + label {
    top: -0.6em;
    left: 0.5em;
    font-size: 0.75rem;
    color: #555;
    background: var(--white);
    padding: 0 0.2em;
}

.consultation-form input[type="text"]:focus,
.consultation-form input[type="email"]:focus,
.consultation-form input[type="tel"]:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary), 0.2);
    transform: translateY(0);
}

.consultation-form button.btn {
    width: 100%;
    margin: 0;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 0.7rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: 5px;
}

.consultation-form button.btn:hover {
    background: #222222;
    transform: translateY(0);
    box-shadow: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0.5rem;
}

.btn.primary {
    background: var(--primary);
    color: var(--white);
}

.btn.secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
    padding-bottom: 0.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 5px;
    transition: width 0.3s ease;
}

section h2:hover::after {
    width: 100px;
}

/* About Section */
.about {
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/square-dots.svg');
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Offerings Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offering-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-10px);
}

.offering-card img {
    width: 100px;
    height: 100px;
}

.offering-card h3{
    margin: 10px;
    font-size: 1.2rem;
}

.offering-card p{
    font-size: 0.9rem;
}

.offering-card .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.offering-card .icon-wrapper i {
    font-size: 2.8rem;
    color: var(--primary);
    background: var(--gray);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(215,0,119,0.08);
    transition: background 0.3s, color 0.3s;
}

.offering-card:hover .icon-wrapper i {
    background: var(--primary);
    color: var(--white);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/square-dots.svg');
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 3rem auto 0;
}

.features-list li {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.5;
    text-align: left;
    position: relative;
    padding-left: 2.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-list li::before {
    content: '\2713';
    position: absolute;
    left: 0.8rem;
    top: 1.5rem;
    color: var(--icon-green);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.features-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */

.testimonials {
  padding: 3rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.testimonial-video video {
  width: 100%;
  max-width: 340px;
  height: 600px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  object-fit: cover;
}

.client-info {
  text-align: center;
  margin-top: 0.5rem;
}

.client-info strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.2rem;
}

.client-info cite {
  font-style: italic;
  color: #555;
}

/* Contact Section */
.contact {
    background: url('images/Group-311.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* subtle black overlay */
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.contact h2{
    color: var(--white);
    margin-bottom: 0.5em;
}
/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Animation */
.mobile-menu.active + .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active + .nav-links a {
    margin: 0.5rem 0;
}

/* Form Validation Styles */
.error-message {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    display: block;
    font-weight: 500;
}

input.error,
select.error {
    border-color: var(--primary) !important;
}

input.error:focus,
select.error:focus {
    box-shadow: 0 0 0 2px rgba(215, 0, 119, 0.1) !important;
}

/* Adjust spacing for form groups */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group-half {
    margin-bottom: 1.2rem;
}

/* Add error icon to error messages */
.error-message::before {
    content: '!';
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Thank You Popup Styles */
.thank-you-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    max-width: 400px;
    width: 90%;
    display: none;
    animation: popupFadeIn 0.3s ease;
}

.thank-you-popup.show {
    display: block;
}

.thank-you-popup h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.thank-you-popup p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.thank-you-popup .close-popup {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thank-you-popup .close-popup:hover {
    background: #b3005f;
    transform: translateY(-2px);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    animation: overlayFadeIn 0.3s ease;
}

.popup-overlay.show {
    display: block;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
        align-items: center;
        height: 200px;
        padding: 0;
    }

    .hero-left .logo img {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        height: 50px;
    }

    .hero-right {
        max-width: 100%;
        padding: 2.5rem 20px;
        background-color: var(--white);
        color: var(--black);
    }

    .hero h1,
    .hero p {
        text-align: center;
        color: var(--white);
    }

    .cta-buttons {
        justify-content: center;
    }

    .form-card {
        max-width: 100%;
        padding: 2rem;
    }

    .consultation-form input, .consultation-form textarea, .consultation-form select {
        margin-bottom: 0.8rem;
    }

    .consultation-form input:last-child, .form-group-half input:last-child, .consultation-form select:last-child {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container{
        flex-direction: column;
    }

    .mobile-menu {
        display: block;
    }

    .hero-left {
        height: 200px;
        padding: 0;
    }

    .hero-left .hero-img-mobile {
        display: block;
    }

    .hero-right{
        padding: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        color: #000;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .form-card {
        padding: 0;
    }

    .form-group-half {
        flex-direction: column;
        gap: 0;
    }

    .form-card h2{
        font-size: 1.3rem;
        text-align: center;
    }

    .consultation-form input, .consultation-form textarea, .consultation-form select {
        margin-bottom: 0.7rem;
    }
    .consultation-form input:last-child, .form-group-half input:last-child {
        margin-bottom: 0;
    }

    /* About section read more/less */
    .about-content .about-p2 {
        display: none;
    }
    .about-content .about-toggle-btn {
        display: inline-block !important;
        background: transparent;
        border: none;
        font-family: 'Montserrat';
        font-size: 1.1rem;
        color: #b3005f;
    }
}

.hero-left .hero-img-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-left {
        background-image: none;
        height: auto;
        padding: 0;
    }
    .hero-left .hero-img-mobile {
        display: block;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 992px){
    .hero-right{
        max-width:100% !important;
        padding:1rem !important;
    }
    .hero-left{
        max-width:100% !important;
    }
}
@media (min-width: 993px) and (max-width: 1200px) {
    .hero-right {
        padding: 2rem 1rem;
    }
}
@media (max-width: 1280px){
    .hero-right{
        max-width:33%;
    }
    .hero-left{
        max-width:70%;
    }
}