  @charset "utf-8";
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }

.roboto { font-family: 'Roboto Slab', serif;}
.dyna { font-family: 'DynaPuff', cursive; }
.col-pink { color:#9f005d}
.tcenter { text-align:center}
.text35 { font-size:35px; line-height:40px}
.h1,h2,h3,h4,h5 { font-weight:400}
        body {
            font-family: 'Roboto Slab', serif;
            color: #414141;
            background-color: #fff;
            overflow-x: hidden; 
        }

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

        /* Header Styles */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #b51a62;
        }

        .center-graphic {
            font-size: 50px;
            color: #ff7ac6;
            background: #ff7ac6;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .btn-primary {
            background-color: #ff7ac6;
            color: #ffffff;
            font-family: 'Roboto Slab', serif;
            font-size: 20px;
            font-weight: 400;
            border: none;
            border-radius: 6px;
            padding: 12px 24px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #f062b5;
        }

        /* Keyframes for continuous rotation */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
	.inner-icon {
      animation: spin 5s linear infinite;
      width: 41px;
      height: 43px;
      text-align: center;
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: center;
      padding-bottom: 7px;
    }

    .inner-icon img {
      max-width: 48px;
      height: auto;
      position: relative;
      top: 4px;
    }

        /* Shared Form UI Styles */
        .survey-title { font-family: 'DynaPuff', cursive; color: #b51a62; font-size: 28px; margin-bottom: 10px; margin-right: 30px; line-height: 1.2; }
        .survey-intro { font-size: 15px; color: #414141; line-height: 1.5; margin-bottom: 35px; }
        
        .form-section { margin-bottom: 25px; }
        .form-section-title { color: #b51a62; font-size: 17px; font-weight: 500; margin-bottom: 12px; }
        .form-section-subtitle { font-size: 14px; color: #414141; margin-top: -8px; margin-bottom: 12px; }
        
        .checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 15px; }
        .checkbox-label { display: flex; align-items: flex-start; font-size: 15px; color: #333; cursor: pointer; line-height: 1.3; }
        
        /* Updated to support both checkbox and radio buttons looking identical (Squares with ticks) */
        .checkbox-label input[type="checkbox"],
        .checkbox-label input[type="radio"] { 
            appearance: none; -webkit-appearance: none; width: 18px; height: 18px; 
            border: 1px solid #a0a0a0; border-radius: 4px; margin-right: 12px; 
            cursor: pointer; position: relative; flex-shrink: 0; margin-top: 1px;
            background-color: #fff;
        }
        .checkbox-label input[type="checkbox"]:checked,
        .checkbox-label input[type="radio"]:checked { background-color: #b51a62; border-color: #b51a62; }
        
        .checkbox-label input[type="checkbox"]:checked::after,
        .checkbox-label input[type="radio"]:checked::after { content: '✔'; position: absolute; color: white; font-size: 13px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        
        .form-textarea {
            width: 100%; border: 1px solid #a0a0a0; border-radius: 6px; padding: 15px;
            font-family: 'Roboto Slab', serif; font-size: 15px; resize: vertical; outline: none;
            transition: border-color 0.3s; color: #333; min-height: 100px;
        }
        .form-textarea:focus { border-color: #ff7ac6; }

        .btn-sidebar-submit {
            background-color: #ff7ac6; color: #ffffff; font-family: 'Roboto Slab', serif;
            font-size: 16px; font-weight: 500; border: none; border-radius: 6px;
            padding: 16px; cursor: pointer; transition: background-color 0.3s ease;
            text-transform: uppercase; width: 100%; margin-top: 10px;
        }
        .btn-sidebar-submit:hover { background-color: #f062b5; }

 /* =========================================
           Hero Banner Styles
           ========================================= */
        .hero-banner {
            position: relative;
            background-color: #fbf8f1; 
            background-image: url(../images/banner-bg.jpg); 
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            padding: 56px 0 23px 0; 
            overflow: hidden;
        }

        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            max-width: 650px;
        }

        .hero-text h1 {
            font-family: 'DynaPuff', cursive; 
            font-size: 55px; 
            color: #9f005d;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .hero-text .subtitle {
            font-size: 25px; 
            margin-bottom: 40px;
            line-height: 1.4;
            font-weight: 400; color:#414141
        }

        .btn-banner {
            background-color: #ff7ac6;
            color: #ffffff;
            font-family: 'Roboto Slab', serif;
            font-size: 17px; 
            font-weight: 600;
            letter-spacing: 1px;
            border: none;
            border-radius: 8px;
            padding: 16px 36px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 26px;
            text-transform: uppercase;
        }

        .btn-banner:hover {
            background-color: #f062b5;
        }

        .hero-text .footer-text {
            font-size: 17px; 
            font-weight: 500;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
        }
		
/*About us section*/
.aboutus { padding-top:75px;}
.aboutus h2 { margin-bottom:25px;}
.text17 { font-size:17px;}
.line26 { line-height:26px}


 /* =========================================
           Sign Up Info Section
           ========================================= */
        .sign-up-section {
            padding: 70px 0;
            background-color: #ffffff;
        }

        .sign-up-wrapper {
            display: flex;
            background-color: #fff9f9;
            border-radius: 20px;
            overflow: hidden;
        }

        .sign-up-left {
            flex: 1;
            background-color: #fff9f9;
            position: relative;
            overflow: hidden;
            padding: 80px 40px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            gap: 20px;
        }
		
		.img-section {  text-align: center;  margin: 0 -1%;  overflow: hidden;}
        .imgs1 {  float: left;  width: 31.33%;  margin-left: 1%;  margin-right: 1%;}
        .imgs1 img {  max-width: 100%;  height: auto;}
		
        .bg-blob { position: absolute; z-index: 1; }
        .blob-pink { top: 0px; left: 0px; width: 107px; height: 110px; background:url(../images/icon1.png); }
        .blob-yellow { top: 0px; right: -4px; width: 107px; height: 177px; background:url(../images/icon2.png); }
        .blob-green { bottom: 0px; left: 0px; width: 83px; height: 138px;background:url(../images/icon3.png);}
        .blob-orange {  bottom: 0px;  right: 0px;  width: 86px;  height: 122px; background:url(../images/icon4.png);}

        .custom-graphic {
            position: relative;
            z-index: 2;
            font-family: 'DynaPuff', cursive;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            line-height: 1;
        }

        .custom-graphic .number-badge {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cg-1 { color: #8e1549; }
        .cg-1 .number-badge { background-color: #f7bccc; color: #8e1549; border-radius: 50%; }
        .cg-1 .main-text { font-size: 70px; letter-spacing: -2px; transform: rotate(-3deg); margin-bottom: 5px; }
        .cg-1 .main-text span { font-size: 35px; }
        .cg-1 .sub-text { font-size: 22px; transform: rotate(-3deg); }

        .cg-2 { color: #4f6333; margin-top: 15px; }
        .cg-2 .number-badge { background-color: #c0cdab; color: #4f6333; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
        .cg-2 .main-text { font-size: 36px; transform: rotate(-2deg); margin-bottom: 5px; }
        .cg-2 .sub-text { font-size: 22px; transform: rotate(-2deg); }

        .cg-3 { color: #625292; margin-top: -15px; }
        .cg-3 .number-badge { background-color: #b7a9d3; color: #625292; border-radius: 20% 80% 30% 70% / 60% 30% 70% 40%; }
        .cg-3 .main-text { font-size: 40px; transform: rotate(2deg); margin-bottom: 5px; }
        .cg-3 .sub-text { font-size: 20px; transform: rotate(2deg); }

        .sign-up-right {
            flex: 1;
            background-color: #ff85c8; 
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sign-up-right h2 {
            font-family: 'DynaPuff', cursive;
            color: #ffffff;          
            margin-bottom: 25px;
            font-weight: 400; letter-spacing:0.5px;
        }
		
        .mystery-pill {
            background-color: #ffffff;
            color: #414141;
            font-family: 'Roboto Slab', serif;
            font-size: 30px;
            font-weight: 400;
            padding: 12px 30px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 60px;
            align-self: flex-start;
            transform: rotate(-2deg); 
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .mystery-pill .pill-icon {
            color: #ff85c8;
            font-size: 26px;
        }

        .draw-box {
            border: 1px solid rgba(255, 255, 255, 0.7);
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .draw-box p {
            color: #ffffff;
            font-size: 30px;
            line-height: 1.4;
            font-weight: 400;
            margin: 0;
        }

        .terms-link {
            color: #ffffff;
            font-size: 25px;
            text-transform: uppercase;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-align: center;
            width: 100%;
            display: block;
            transition: opacity 0.3s ease;
        }

        .terms-link:hover { opacity: 0.8; }
	    .draw-box svg { width:80px; height:80px;}	
	
	
	  /* =========================================
           Competition Form Section (Combined Flow)
           ========================================= */
		.container-1036 {  max-width: 1036px;  margin: 0 auto;  padding: 0 20px;}
        
        .competition-form-section {
            padding: 20px 0 100px 0;
            background-color: #ffffff;
        }
        .form-header {
            text-align: center;
            margin-bottom: 45px;
        }
        .form-header h2 {
            font-family: 'DynaPuff', cursive;
            color: #b51a62;
            margin-bottom: 15px;
			font-weight:400			
        }
        .form-header p {
            font-size: 18px;
            line-height: 1.5;
            color: #414141;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .comp-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-group.floating-label-group {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .form-control.floating-input,
        .form-control.floating-select {
            font-family: 'Roboto Slab', serif;
            font-size: 16px;
            padding: 24px 20px 8px 20px; 
            border: 1px solid #c2c2c2;
            border-radius: 8px;
            color: #333;
            background-color: #ffffff;
            outline: none;
            transition: border-color 0.3s;
            width: 100%;
        }

        .form-control.floating-input:focus,
        .form-control.floating-select:focus {
            border-color: #ff7ac6;
        }

        .floating-label {
            position: absolute;
            top: 17px;
            left: 20px;
            font-family: 'Roboto Slab', serif;
            font-size: 16px;
            color: #555;
            pointer-events: none; 
            transition: all 0.2s ease-out;
        }

        .floating-input:focus ~ .floating-label,
        .floating-input:not(:placeholder-shown) ~ .floating-label {
            top: 6px;
            font-size: 12px;
            color: #b51a62;
            font-weight: 500;
        }

        .floating-select:focus ~ .floating-label,
        .floating-select:valid ~ .floating-label {
            top: 6px;
            font-size: 12px;
            color: #b51a62;
            font-weight: 500;
        }

        select.form-control.floating-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
            background-repeat: no-repeat;
            background-position-x: calc(100% - 15px);
            background-position-y: center;
            cursor: pointer;
        }
        
        .rating-section {
            margin-top: 15px;
            margin-bottom: 30px; width:70%
        }
        .rating-label-main {
            font-size: 17px;
            margin-bottom: 15px;
            display: block;
            color: #414141;
        }
        .rating-scale {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
        }
        .rating-box {
            flex: 1;
            text-align: center;
        }
        .rating-box input[type="radio"] {
            display: none;
        }
        .rating-box label {
            display: block;
            background-color: #f2f2f2;
            padding: 12px 0;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
        }
        .rating-box label:hover {
            background-color: #e2e2e2;
        }
        .rating-box input[type="radio"]:checked + label {
            background-color: #ff7ac6;
            color: #fff;
        }
        .rating-labels {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            font-style: italic;
            color: #414141;
            margin-top: 5px;
        }

        .btn-submit {
            background-color: #ff7ac6;
            color: #ffffff;
            font-family: 'Roboto Slab', serif;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1px;
            border: none;
            border-radius: 8px;
            padding: 16px 40px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            display: block;
        }
        .btn-submit:hover {
            background-color: #f062b5;
        }
		
        /* Success Message styling */
        #success-message {
            background-color: #fff9f9;
            border: 2px dashed #ff7ac6;
            border-radius: 12px;
            margin: 20px auto;
            max-width: 800px;
        }

		.container-full { max-width:1920px; margin:auto}
		.whymystry img{ max-width:100%; height:auto}
		.whymystry1 {  display: flex;  flex-direction: row;  align-content: center;  align-items: center; padding-top:50px}		
		
		.whymystry-left {  margin-right: auto;  width: 49%; }
		.whymystry-left strong { display:block; color:#9f005d; font-weight:400; padding-bottom:2px}
		.whymystry-right {  margin-left: auto;  width: 49%;}	
		
		.freeterms { background:#ff80c3; margin-top:75px;}
		.freeterms img{ max-width:100%; height:auto; display:block}
		.freeterms1 {  display: flex;  flex-direction: row;  align-content: center;  align-items: center; }		
		
		.freeterms-left {  margin-right: auto;  width: 49%; padding:47px}
		.freeterms-left strong { display:block; color:#9f005d; font-weight:400; padding-bottom:2px}
		.freeterms-right {  margin-left: auto;  width: 49%;}	
		.col-white { color:#fff}
		.termslist { padding-top:32px}
		.termslist ul { margin:0; padding:0; list-style:none}
		.termslist li { padding-left:38px; position:relative; font-size:22px; color:#fff; margin-bottom:25px }
		.termslist li:before { position:absolute; top:2px; left:0; width:24px; height:23px; background:url(../images/tick.svg); content:''; }
		.text25 { font-size:25px;}
		
		.contact { padding-top:70px; padding-bottom:50px;}
		.contact h4 { padding-bottom:15px;}
		.contact h5 { padding-bottom:5px}
		.copy { background:#f5f0ec; padding:28px 0}
		.form-group.floating-label-group { margin-bottom:20px}
		
		 @media (max-width: 1600px) {
		 .sign-up-right { padding:42px 50px;}
		 }
		
		    @media (max-width: 1200px) {
            .sign-up-wrapper { flex-direction: column; }
            .sign-up-left { padding: 80px 20px; }
            .sign-up-right { padding: 60px 40px; }
			
			.whymystry1 {    flex-wrap: wrap;}
			.whymystry-left {  margin-right: auto;  width: 100%;  order: 2;}
			.whymystry-right {  order: 1; text-align:center; width:100%; padding-bottom:35px}
			
			.aboutus {  padding-top: 50px;}
			.sign-up-section { padding:50px 0}
			.competition-form-section { padding-top:5px;}
			.rating-section { width:100%}
			.rating-section { margin-bottom:16px;}
			.competition-form-section { padding-bottom:65px;}
			.whymystry1 { padding-top:30px;}
			.freeterms { margin-top:50px;}
			.freeterms-left { padding:30px;}
			
			
			.freeterms1 {    flex-wrap: wrap;}
			.freeterms-left {  margin-right: auto;  width: 100%;  order: 2;}
			.freeterms-right {  order: 1; text-align:center; width:100%; padding-bottom:0px; text-align:center}
			.freeterms-right  img { margin:auto}
			.contact {  padding-top: 40px;  padding-bottom: 34px;}
			
        }
		        @media (max-width: 950px) {
            .hero-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .hero-text {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-image {
                justify-content: center;
            }

            .hero-banner {
                padding: 60px 0 80px 0;
            }
			
			.hero-banner {  background-position: -588px 0;}
			
			.hero-text h1 { font-size:48px;}
			.hero-text .subtitle {  font-size: 23px;}
			.btn-banner {  font-size: 16px;  padding: 14px 30px;}        
			.text35 { font-size:32px;}
			.line26 {  line-height: 24px;}
			.text17 {  font-size: 16px;}	
			.mystery-pill { font-size:27px;}
			.draw-box p { font-size:27px;}
			.terms-link { font-size:22px;}	
			.floating-label { font-size:14px;}
			.rating-box label { font-size:15px;}	
			.text25 {  font-size: 22px;}
			.termslist li { font-size:19px;}
			}

            .success-tick { margin-bottom: 30px; }
            .success-tick img { width: 80px;height: auto; }
		
		 /* Tablet & Smaller Laptops */
          @media (max-width: 850px) {
            .header-content { flex-direction: column; gap: 20px; text-align: center; }
			header {  padding-bottom: 50px;  position: relative;  z-index: 99;}			
            .center-graphic {    position: absolute;  bottom: -43px;  left: 0;  right: 0;  margin: auto;}
        }
        @media (max-width: 768px) {
            .form-row { flex-direction: column; gap: 20px; }
			.img-section { margin: 0%;  }
			.imgs1 {  width: 100%;  margin-left: 0;  margin-right: 0; margin-bottom:20px}
			.hero-banner {    padding-bottom:  40px ;  }
        }

        @media (max-width: 650px) {
            .sign-up-left { flex-direction: column; gap: 50px; }
			.rating-scale { flex-wrap: wrap; justify-content: center; }
            .rating-box { flex: 0 0 calc(20% - 8px); } 
        }

        /* Mobile Phones */
        @media (max-width: 550px) {
		    .center-graphic { width:60px; height:60px; bottom:-34px;}
		    .inner-icon { font-size:38px;}
		    .imgs1 img { width:180px;}
            .logo img {  max-width: 170px;  height: auto;}
			.btn-primary { font-size:16px;}
			.header-content { gap: 10px;}
            .checkbox-grid { grid-template-columns: 1fr; gap: 15px; }
            .survey-title { font-size: 22px; margin-top: 15px; }
			
            .hero-text h1 { font-size: 40px; }
            .hero-text .subtitle { font-size: 20px; margin-bottom: 30px; }
            .btn-banner { width: 100%; margin-bottom: 30px; }
            .hero-text .footer-text { font-size: 14px; line-height: 1.6; }
			.hero-text .subtitle br { display:none}
			
			.sign-up-right { padding: 50px 20px; }
            .sign-up-right h2 { font-size: 30px; text-align: center; }
            .mystery-pill { font-size: 18px; align-self: center; padding: 10px 20px; }
            .draw-box { flex-direction: column; text-align: center; padding: 20px; }
            .draw-box p { font-size: 18px; }
            .terms-link { font-size: 14px; }
			
            .form-header p { font-size: 16px; }
			
			.hero-text h1 { font-size:44px;}
			.hero-text .subtitle {  font-size: 21px;}
			.btn-banner {  font-size: 15px;  padding: 14px 30px;}        
			.text35 { font-size:30px;}
			.line26 {  line-height: 23px;}
			.text17 {  font-size: 15px;}	
			.mystery-pill { font-size:25px;}
			.draw-box p { font-size:25px;}
			.terms-link { font-size:20px;}	
			.floating-label { font-size:14px;}
			.rating-box label { font-size:14px;}	
			.text25 {  font-size: 20px;}
			.termslist li { font-size:17px;}
            .checkbox-grid { grid-template-columns: 1fr; gap: 12px; }
			
			.inner-icon img {  max-width: 36px;}
        }
		@media (max-width: 479px) {
		    .mystery-pill { font-size: 16px; padding: 10px 11px; }
		}