/* Gradient Header Background */
.rr-header {
    background: linear-gradient(90deg, #393B82, #D8407E);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

/* Layout */
.rr-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.rr-logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-transform: lowercase;
    letter-spacing: 1px;
}
.rr-logo span {
    opacity: 0.7;
}

/* Navigation */
.rr-nav a,
.rr-dropbtn {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Services Dropdown */
.rr-dropdown {
    position: relative;
    display: inline-block;
}
.rr-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    border-radius: 5px;
    overflow: hidden;
}
.rr-dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
}
.rr-dropdown-content a:hover {
    background: #eee;
}
.rr-dropdown:hover .rr-dropdown-content {
    display: block;
}

/* Contact Button */
.rr-contact-btn {
    padding: 10px 25px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

/* Mobile Menu */
.rr-mobile-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 850px) {
    .rr-nav,
    .rr-contact-btn {
        display: none;
    }
    .rr-mobile-toggle {
        display: block;
    }
}




/* HERO SECTION */
.rr-hero {
    background: linear-gradient(90deg, #2C3665, #533568, #8A2E63);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* angled bottom */
.rr-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    transform: skewY(-5deg);
    transform-origin: top left;
}

/* Text container */
.rr-hero-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Subtitle */
.rr-hero-subtitle {
    /* color: rgba(255,255,255,0.7); */
    font-size: 20px;
    margin-bottom: 12px;
}

/* Title */
.rr-hero-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
}




   /* Video Background Hero Section */
        .video-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.7);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            padding-bottom: 181px;
            text-align: left;
            padding-right: 230px;
        }
        
        .hero-content h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: left;
    
        }
        
        .hero-content h2 span {
            color: #ff6b35;
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #e0e0e0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: #1a1a2e;
            transform: translateY(-3px);
        }

        /* SECTION LAYOUT */
.rr-contact-section {
    padding: 80px 0;
    font-family: Arial, sans-serif;
}

.rr-contact-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.rr-contact-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.rr-contact-left h3 {
    margin-top: 35px;
    font-size: 20px;
}

.rr-contact-left p {
    color: #444;
    line-height: 1.6;
}

.rr-contact-left hr {
    margin: 35px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* RIGHT COLUMN */
.rr-contact-right h1 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 20px;
}
.rr-contact-right h1 span {
    font-style: italic;
    font-weight: 400;
}
.rr-contact-right p {
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* FORM */
.rr-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rr-contact-form label {
    font-weight: 600;
    font-size: 15px;
}

.rr-contact-form label span {
    color: #ff3366;
}

.rr-contact-form input[type="text"],
.rr-contact-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.2s ease;
}

.rr-contact-form input:focus {
    border-color: #ff4b78;
    outline: none;
}

/* RADIO OPTIONS */
.rr-radio-group {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rr-radio {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rr-radio input {
    width: 18px;
    height: 18px;
}

.rr-radio span {
    font-size: 15px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .rr-contact-container {
        grid-template-columns: 1fr;
    }

    .rr-contact-right h1 {
        font-size: 36px;
    }
}

/* Submit Button */
.rr-btn-submit {
    margin-top: 25px;
    padding: 16px 30px;
    background: #ff4b78;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, transform 0.1s ease;
}

.rr-btn-submit:hover {
    background: #ff2f66;
}

.rr-btn-submit:active {
    transform: scale(0.97);
}
/* Services Checkboxes */
.rr-services-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.rr-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rr-check input {
    width: 18px;
    height: 18px;
}

.rr-check span {
    font-size: 15px;
    color: #444;
}

/* Submit Button */
.rr-btn-submit {
    margin-top: 25px;
    padding: 16px 35px;
    background: #ff4b78;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    width: fit-content;
}

.rr-btn-submit:hover {
    background: #ff2d63;
}

.rr-btn-submit:active {
    transform: scale(0.97);
}

        