@charset "utf-8";

:root {
  --primary: #b41176;
  --secondary: #ff7983;
  --accent: #fca65e;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #fafafa;
  --max-width: 100%;
}

* {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    width: 100%;
    padding-top: auto;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: auto;
    margin: auto;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}


.wrapper {
   width: 1300px;
	margin: 0 auto;
    background-color: #E9E7EE;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background-color: #E9E7EE;
    padding-left: auto;
}



.section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg,#fdc2d8,#fca65e,#ff7983,#b41176);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.about-hero {
    padding-top: 100px;
    padding-right: 20px;
    padding-bottom: 100px;
    text-align: center;
    background: linear-gradient(135deg, #fdc2d8, #fca65e, #ff7983, #b41176);
    color: var(--text-light);
    border-radius: 20px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: 14px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
    width: 1238px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: against;
}

.about-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

/* About Content */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    margin-left: -46px;
}

.about-left {
  flex: 1 1 350px;
  text-align: center;
}

.about-left img {
    max-width: 350px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    margin-left: -9px;
}

.about-left img:hover {
  transform: scale(1.05);
}

.about-right {
    flex: 1 1 500px;
    width: auto;
    margin-right: 50px;
}

.about-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary);
}

.about-right p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #444;
}

/* Skills Section */
.skills {
    margin-top: 49px;
    text-align: center;
    width: 1232px;
    margin-left: 13px;
    margin-right: auto;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  background: #fdf0f5;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

:root {
            --primary-blue: #0077cc;
            --primary-pink: #ff6699;
            --footer-bg: #f8f9fa;
            --text-dark: #333333;
            --text-light: #666666;
        }

       
      

        body {
            width: 1300px;
            margin: 0 auto;
        }
.portfolio-footer {
    background: var(--footer-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 16px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
        }

        .footer-logo span {
            color: var(--primary-pink);
        }

        .footer-logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .footer-description {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-social {
    display: flex;
    gap: 15px;
    margin-left: 23px;
        }
.footer-links .footer-link a {

}


        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: var(--primary-blue);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-3px);
            background: var(--primary-pink);
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 18px;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-link a:hover {
            color: var(--primary-pink);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            color: var(--text-light);
            font-size: 14px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            
            align-items: center;
        }
.portfolio-footer .footer-bottom {
    background-image: url(images/layout_01.png);
}


        .copyright {
    color: #FFFFFF;
    font-size: 13px;
    margin-top: -18px;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    margin-top: -18px;
        }

        .footer-legal a:hover {
    color: #D63384;
        }

        .footer-decoration {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-pink) 0%, rgba(255, 102, 153, 0.2) 70%);
            filter: blur(50px);
            opacity: 0.4;
            z-index: 0;
        }
 .footer-brand .footer-logo .footer-logo-icon {
    font-family: Godber;
}
.portfolio-footer .footer-bottom .copyright {
    margin-left: 244px;
    float: left;
}
.footer-bottom .footer-legal a {
    float: left;
    padding-left: 0px;
}

.footer-container .footer-contact .footer-title {
}

.footer-bottom .footer-legal a {

}
.portfolio-footer .footer-decoration {

}

.portfolio-footer .footer-bottom .footer-legal {
    word-spacing: 0px;
    margin-left: -196px;
}
.footer-bottom .footer-legal a {
    margin-left: 167px;
    float: left;
    margin-top: -18px;
}
.footer-bottom .footer-legal a {
    margin-left: 59px;
    color: #FFFFFF;
    float: left;
    margin-right: auto;
}
.wrapper header .logo {
    color: #FFFFFF;
    background-color: #FD956C;
    border-radius: 13px;
    width: 237px;
    text-align: center;
    margin-top: -6px;
}
.about-hero .about-hero-text p {
    color: #FFFFFF;
    font-family: Montserrat;
}
.about-hero .about-hero-text h1 {
    color: #5F5E5E;
}






.portfolio-footer .footer-decoration {
    margin-left: 22px;
    float: left;
    position: absolute;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 27px;
    background-color: #99A8C6;
    border-radius: 42px;
    width: 1224.98px;
    margin-left: 20px;
    height: 57.02px;
    z-index: 1;
    margin-right: auto;
    margin-top: 2px;
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    border-radius: 90px;
    font-size: 25px;
}
 header nav {
    margin-left: auto;
    margin-right: -55px;
    margin-top: -8px;
}


header nav a:hover {
  color: #d63384;
}

.contact-btn {
  background: #d63384;
  padding: 8px 18px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.contact-btn {
    padding-top: 5px;
}


.contact-btn:hover {
  background: #b2246d;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  display: inline-block;
  background: #d63384;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #b2246d;
}
.wrapper header .logo {
    font-size: 25px;
    font-family: "Qurova DEMO";
    background: linear-gradient(,#fdc2d8,#fca65e,#ff7983,);
    margin-left: -41px;
}
.about-content .about-right p {
    font-size: 22px;
}

.profile-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; 
  display: block;
  margin: 0 auto;
  opacity: 0; 
  animation: fadeIn 1.5s ease-in-out forwards;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* slight upward motion */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.hero {
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.services-hero {
    background: linear-gradient(90deg,#fdc2d8,#fca65e,#ff7983,#b41176);
    animation: fadeIn 1s ease-in-out;
    margin-top: 45px;
}
body {
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    margin-left: 426px;
    margin-top: -76px;
    font-family: against;
    color: #4F4F4F;
}

.hero p {
    font-size: 22px;
    opacity: 0.9;
    float: left;
    position: absolute;
    padding-left: 340px;
    margin-top: 34px;
    margin-left: -18px;
    text-align: center;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 10%;
}


.card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover {
  transform: rotateY(12deg) rotateX(6deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}


.card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}


.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #b41176;
}

/* Card Text */
.card p {
  font-size: 1rem;
  line-height: 1.5;
}body {
}

.logo:hover {
  transform: scale(1.1);
  background-position: right;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); 
}



.terms-section {
    max-width: 1200px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    text-align: center;
}

/* Header */
.terms-header h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.terms-header p {
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Terms content grid */
.terms-content {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

/* Glassy elongated cards */
.terms-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: left;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  min-height: 260px;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.terms-card:nth-child(1) { animation-delay: 0.2s; }
.terms-card:nth-child(2) { animation-delay: 0.4s; }
.terms-card:nth-child(3) { animation-delay: 0.6s; }
.terms-card:nth-child(4) { animation-delay: 0.8s; }
.terms-card:nth-child(5) { animation-delay: 1s; }
.terms-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover interaction */
.terms-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--secondary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

/* Headings inside cards */
.terms-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-card p {
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.terms-card a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-card a:hover {
  color: var(--secondary);
}
.terms-content .terms-card p {
    font-family: Montserrat;
    color: hsla(0,0%,0%,1.00);
}
.terms-section .terms-header p {
    color: hsla(0,0%,0%,1.00);
}
.terms-content .terms-card h3 {
}


.privacy-section {
    max-width: 1200px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    text-align: center;
}
.privacy-section .privacy-content .privacy-card {
}


/* Header */
.privacy-header h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.privacy-header p {
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid */
.privacy-content {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

/* Glass cards */
.privacy-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  min-height: 260px;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.privacy-card:nth-child(1) { animation-delay: 0.2s; }
.privacy-card:nth-child(2) { animation-delay: 0.4s; }
.privacy-card:nth-child(3) { animation-delay: 0.6s; }
.privacy-card:nth-child(4) { animation-delay: 0.8s; }
.privacy-card:nth-child(5) { animation-delay: 1s; }
.privacy-card:nth-child(6) { animation-delay: 1.2s; }
.privacy-card:nth-child(7) { animation-delay: 1.4s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover */
.privacy-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--secondary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.privacy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-card p {
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.privacy-card a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-card a:hover {
  color: var(--secondary);
}
.privacy-content .privacy-card p {
    font-family: Montserrat;
    color: hsla(0,0%,0%,1.00);
}
.privacy-section .privacy-header p {
    color: hsla(0,0%,0%,1.00);
    font-weight: 500;
}
.embe .1 {
    float: left;
    width: 100%;
    margin-left: auto;
    margin-right: 0px;
}
.embe {
}

.embe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Hover effect */
.video-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.footer-container .footer-brand .footer-description {
    margin-left: 26px;
}
.footer-container .footer-brand .footer-description {
}

.footer-container .footer-brand .footer-description {
}



/* Side by side on larger screens */
@media (min-width: 900px) {
  .embe {
    grid-template-columns: repeat(2, 1fr);
  }
}
