/* 🔹 Hero Section */
.herofirst {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 50px 20px;
}

.herofirst-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 🔹 Left Side (Curved Box) */
.book {
    flex: 1 1 45%;
    background: #17356c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 25px;
    min-height: 400px;
}

.book-cover {
    /* background: linear-gradient(145deg, #1e1e1e, #3b3b3b); */
    border-radius: 25px;
    width: 100%;
    max-width: 350px;
    height: 334px;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.book-icons {
    display: none;
    gap: 12px;
    margin-bottom: 20px;
}

.circle {
    width: 30px;
    height: 30px;
    background: #9db2ff;
    border-radius: 50%;
}

.square {
    width: 30px;
    height: 30px;
    background: #c9aaff;
}

.book-cover h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* 🔹 Right Side Content */
.content {
    flex: 1 1 55%;
    padding: 60px 40px;
    background: #f5f8fc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b0b0b;
    margin: 20px 0;
}

.desc {
    color: #475569;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #17356c;
    color: #fff;
}

.btn.primary:hover {
    background: #0e2550;
}

.btn.outline {
    background: transparent;
    border: 2px solid #17356c;
    color: #17356c;
}

.btn.outline:hover {
    background: #17356c;
    color: #fff;
}

/* ✅ Responsive Layout */
@media (max-width: 992px) {
    .herofirst-container {
        flex-direction: column;
        text-align: center;
    }

    .book {
        flex: 1 1 100%;
        border-radius: 25px 25px 0 0;
        padding: 30px;
    }

    .content {
        flex: 1 1 100%;
        border-radius: 0 0 25px 25px;
        padding: 30px 20px;
    }

    .content h3 {
        font-size: 2rem;
    }

    .book-cover {
        max-width: 280px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .herofirst {
        padding: 30px 10px;
    }

    .content h3 {
        font-size: 1.7rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
    }

    .book-cover h2 {
        font-size: 1.4rem;
    }
}





/* === HERO SECTION === */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

/* === LEFT SIDE === */
.hero-left {
    position: relative;
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background: #0066ff;
    border-radius: 12px;
    z-index: 1;
}

.book-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    max-height: 432px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

/* === RIGHT SIDE === */
.hero-right {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Testimonial */
.testimonial {
    background-color: #eef3fa;
    padding: 20px 25px;
    border-radius: 10px;
}

.stars {
    color: #1e40ff;
    font-size: 18px;
    margin-bottom: 8px;
}

.quote {
    font-style: italic;
    color: #333;
}

.author {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

.author span {
    color: #1e40ff;
    font-weight: 600;
}

/* Content */
.content h3 {
    font-size: 2.5rem;
    color: #0a0a0a;
    font-weight: 800;
    line-height: 1.2;
}

.content p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    max-width: 480px;
}

/* Buttons */
.buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.btn.primary {
    background-color: #1e40ff;
    color: white;
}

.btn.secondary {
    border: 1.5px solid #1e40ff;
    color: #1e40ff;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .grid-bg {
        width: 100%;
        height: 100%;
    }

    .book-img {
        max-width: 300px;
    }

    .hero-right {
        align-items: center;
    }

    .content h3 {
        font-size: 2rem;
    }

    .content p {
        max-width: 90%;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .content h3 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }

    .book-img {
        max-width: 260px;
    }
}




/* Section with Fixed Background */
.fixed-bg {
    position: relative;
    background: url('../images/homeimg/AbstractObjects.gif') center center / cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 60px 20px;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Content Box Style */
.content-box {
    background: #455d89;
    backdrop-filter: blur(8px);
    border: 1px solid #c9aaff;
    border-radius: 16px;
    padding: 12px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #eaeaeac7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        /* Stack boxes in smaller screens */
    }
}

@media (max-width: 768px) {
    .content-box {
        padding: 20px;
    }

    .content-box h2 {
        font-size: 1.4rem;
    }

    .content-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .fixed-bg {
        padding: 40px 15px;
    }
}





/* 🌟 Why Choose Section */
.why-choose-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0e103d 60%, #1b1f67);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.left-content {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.sub-title {
    color: #b0b3ff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.left-content h3 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.left-content h3 span {
    color: #6b6bff;
}

.description {
    font-size: 16px;
    color: #d1d3ff;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    font-size: 16px;
    color: #e8e8ff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #6b6bff;
    color: #fff;
}

.btn-primary:hover {
    background: #5252d8;
}

.btn-secondary {
    background: #fff;
    color: #1b1f67;
}

.btn-secondary:hover {
    background: #d9d9ff;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.mockup-image {
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* 🌐 Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
        margin-top: 40px;
    }

    .left-content h3 {
        font-size: 36px;
    }

    .buttons {
        justify-content: center;
    }

    .mockup-image {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .left-content h3 {
        font-size: 28px;
    }

    .description,
    .feature-list {
        font-size: 14px;
    }

    .mockup-image {
        max-width: 280px;
    }
}





:root {
    --accent: #6b6bff;
    --bg: #f5f8fc;
    --text: #0b0b0b;
}

.profile-section {
    padding: 60px 20px;
    background: var(--bg);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.profile-left {
    flex: 0 0 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-left .img-wrap {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: linear-gradient(135deg, var(--accent), #00c2ff);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

/* inner ring and photo */
.profile-left .img-wrap .photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: block;
    border: 6px solid rgba(255, 255, 255, 0.9);
}

.profile-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Right column */
.profile-right {
    flex: 1 1 380px;
    min-width: 260px;
    color: var(--text);
    padding: 8px;
}

.profile-right h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
    color: #07103a;
}

.profile-right p {
    color: #3b4556;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 1rem;
    max-width: 72ch;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-actions .btn {
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.profile-actions .btn.primary {
    background: var(--accent);
    color: #fff;
}

.profile-actions .btn.outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

/* Responsive tweaks */
@media (max-width:900px) {
    .profile-container {
        gap: 20px;
    }

    .profile-left {
        flex: 0 0 300px;
    }

    .profile-left .img-wrap {
        width: 280px;
        height: 280px;
    }
}

@media (max-width:640px) {
    .profile-container {
        flex-direction: column-reverse;
        padding: 30px 12px;
    }

    .profile-left {
        order: 1;
    }

    .profile-right {
        order: 2;
        text-align: center;
    }

    .profile-right p {
        max-width: 100%;
    }

    .profile-right h2 {
        font-size: 1.6rem;
    }

    .profile-left .img-wrap {
        width: 200px;
        height: 200px;
    }
}







/* Section Wrapper */
.case-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #13133b;
    background-image: url('assets/home/img/img1.jpg');
    background-repeat: no-repeat;
    /* Prevent repeating */


}

/* Inner Container */
.case-container {
    background: #1a1a3a;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    border: 5px solid #3b3b7a;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Left Content */
.case-content {
    flex: 1;
}

.case-number {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.case-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

.case-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

/* Tag Buttons */
.tags span {
    background: #2b2b56;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    color: #ddd;
    margin-right: 10px;
    display: inline-block;
}

/* Right Image */
.case-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .case-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .case-content h3 {
        font-size: 28px;
    }

    .case-image img {
        max-width: 380px;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .case-container {
        padding: 30px 20px;
    }

    .case-content h3 {
        font-size: 24px;
    }

    .case-description {
        font-size: 15px;
    }

    .tags span {
        font-size: 13px;
        padding: 6px 14px;
    }

    .case-image img {
        max-width: 320px;
    }
}






.seo-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background-color: #050505;

}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 span {
    color: #4a6eff;
}

.seo-subtext {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.seo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-card:hover {
    transform: scale(1.05);
    border-color: #4a6eff;
    box-shadow: 0 0 25px rgba(74, 110, 255, 0.4);
}

.seo-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.seo-card p {
    color: #bbb;
    font-size: 0.95rem;
}

.seo-description {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.seo-description h2 {
    font-size: 1.5rem;
    color: #4a6eff;
    margin-top: 40px;
    margin-bottom: 10px;
}

.seo-description p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Corner Images */
.corner-img {
    position: absolute;
    width: 100px;
    opacity: 0.8;
    animation: rotate 10s linear infinite;
    transition: opacity 0.5s ease;
}

.corner-img:hover {
    opacity: 1;
    animation-play-state: paused;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Image Positions */
.img-top-left {
    top: 20px;
    left: 20px;
}

.img-top-right {
    top: 20px;
    right: 20px;
}

.img-bottom-left {
    bottom: 20px;
    left: 20px;
}

.img-bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    h3 {
        font-size: 2rem;
    }

    .seo-card {
        padding: 20px;
    }

    .corner-img {
        width: 70px;
    }

    .seo-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .seo-section {
        padding: 60px 15px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .seo-card h3 {
        font-size: 1rem;
    }

    .corner-img {
        width: 50px;
    }
}





/* ============================
   IBERR SECTION STYLES
   ============================ */
.iberr-section {
    background: #2b2b56;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.iberr-container {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* BOX DESIGN */
.iberr-box {
    border: 2px solid #3b82f6;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
}

/* IMAGE BOX */
.iberr-image {
    padding: 0;
    overflow: hidden;
}

.iberr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* TAG */
.iberr-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TYPOGRAPHY */
h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.4;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}

p strong {
    color: #0f172a;
}

.iberr-highlight {
    color: #2563eb;
    font-weight: 600;
}

/* GRID LAYOUT */
@media (min-width: 900px) {
    .iberr-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .iberr-image {
        grid-row: span 2;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .iberr-section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 500px) {
    .iberr-box {
        padding: 20px;
    }
}





/* ====== RESET ====== */
/* ====== SECTION ====== */
.iberr-local-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 139, 0.315)
}

/* ====== LEFT SIDE (TEXT) ====== */
.iberr-local-text {
    flex: 1 1 50%;
    background: #7c3aed;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.iberr-local-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.iberr-local-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.iberr-local-text li {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
}

.iberr-local-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    color: #fff;
}

.iberr-local-text button {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
}

/* ====== RIGHT SIDE (IMAGE) ====== */
.iberr-local-image {
    flex: 1 1 50%;
    background: linear-gradient(90deg, #7c3aed 0%, #c084fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 400px;
}

.iberr-local-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: cover;
    display: block;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .iberr-local-section {
        flex-direction: column;
    }

    .iberr-local-text,
    .iberr-local-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .iberr-local-text {
        padding: 50px 30px;
        text-align: left;
    }

    .iberr-local-text h2 {
        font-size: 1.7rem;
    }

    .iberr-local-text li {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .iberr-local-text button {
        margin-top: 15px;
        font-size: 0.95rem;
    }

    .iberr-local-image {
        background: linear-gradient(180deg, #7c3aed 0%, #c084fc 100%);
    }
}

@media (max-width: 500px) {
    .iberr-local-text {
        padding: 40px 20px;
    }

    .iberr-local-text h2 {
        font-size: 1.5rem;
    }

    .iberr-local-text li {
        font-size: 0.9rem;
    }

    .iberr-local-text button {
        padding: 10px 20px;
    }
}




.kerala-seo-wrapper {
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 80px 10%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.kerala-seo-flexbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.kerala-seo-gallery {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kerala-seo-pic {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kerala-seo-pic:hover {
    transform: scale(1.05);
}

.kerala-seo-info {
    flex: 1 1 500px;
}

.kerala-seo-info h2 {
    color: #0b1330;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.kerala-seo-info p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kerala-seo-flexbox {
        flex-direction: column;
        text-align: center;
    }

    .kerala-seo-gallery {
        flex-direction: row;
        justify-content: center;
    }

    .kerala-seo-pic {
        width: 45%;
    }

    .kerala-seo-info h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .kerala-seo-wrapper {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        padding: 60px 20px;
    }

    .kerala-seo-pic {
        width: 100%;
    }

    .kerala-seo-info h2 {
        font-size: 1.4rem;
    }

    .kerala-seo-info p {
        font-size: 0.95rem;
    }
}




/* ====== Benefits SEO Section ====== */
.benefitsseo {
    width: 100%;
    padding: 80px 10%;
    background: rgb(2 14 32);
}

.benefitsseo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.benefitsseo-image {
    flex: 1 1 45%;
    text-align: center;
}

.benefitsseo-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.benefitsseo-content {
    flex: 1 1 50%;
}

.benefitsseo-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.benefitsseo-content p {
    font-size: 17px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefitsseo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.benefitsseo-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.6;
}

.benefitsseo-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0078ff;
    font-weight: bold;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .benefitsseo-container {
        flex-direction: column;
        text-align: center;
    }

    .benefitsseo-image,
    .benefitsseo-content {
        flex: 1 1 100%;
    }

    .benefitsseo-content h2 {
        font-size: 26px;
    }

    .benefitsseo-content p,
    .benefitsseo-content ul li {
        font-size: 16px;
    }
}



.choose-seo-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #07103a 0, #0b1330 100%);
    color: #fff;
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.choose-left {
    flex: 1 1 520px;
    min-width: 280px;
}

.choose-left .sub-title {
    color: #a9b5ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.choose-left h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.choose-left p {
    color: #d6dbff;
    line-height: 1.7;
    margin-bottom: 16px;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: #e6ebff;
}

.choose-list li {
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.choose-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #6b6bff;
    font-weight: 700;
}

.choose-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.choose-cta .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.choose-cta .btn-primary {
    background: #6b6bff;
    color: #fff;
    border: none;
}

.choose-right {
    flex: 1 1 420px;
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(11, 13, 40, 0.5);
    display: block;
}

@media (max-width: 900px) {
    .choose-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .choose-left {
        order: 2;
    }

    .choose-right {
        order: 1;
    }

    .choose-left h2 {
        font-size: 22px;
    }
}




/* Base Styles */
.seo-grow-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 10%;
    background-color: #f5f8ff;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    gap: 40px;
}

.seo-grow-section .image-box {
    flex: 1 1 400px;
    text-align: center;
}

.seo-grow-section .image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    display: inline-block;
    animation: spin-rotate-2 12s linear infinite;
    transform-origin: 50% 50%;
}

@keyframes spin-rotate-2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.seo-grow-section .content-box {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 20px;
}

.seo-grow-section h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-grow-section p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .seo-grow-section {
        padding: 50px 8%;
        flex-direction: column;
        text-align: center;
    }

    .seo-grow-section .content-box {
        max-width: 100%;
        padding: 10px;
    }

    .seo-grow-section h2 {
        font-size: 24px;
    }

    .seo-grow-section p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .seo-grow-section {
        padding: 40px 6%;
    }

    .seo-grow-section h2 {
        font-size: 22px;
    }

    .seo-grow-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .seo-grow-section {
        padding: 30px 5%;
        border-radius: 20px;
        gap: 20px;
    }

    .seo-grow-section .image-box img {
        width: 90%;
        border-radius: 20px;
    }

    .seo-grow-section h2 {
        font-size: 20px;
    }

    .seo-grow-section p {
        font-size: 13px;
        line-height: 1.6;
    }
}



    .split-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 8%;
      gap: 40px;
    }

    .left-content { flex: 1; }

    .left-content h2 {
      font-size: 42px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .left-content p {
      font-size: 18px;
      color: #555;
      margin-bottom: 30px;
    }

    .cta-btn {
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 12px 25px;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
    }

    /* Slider */
    .right-slider { flex: 1; display: flex; justify-content: center; }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 420px;
    }

    /* make sure image doesn't cover controls and is a block */
    .slider-container img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
      position: relative;
      z-index: 1; /* keep image behind arrows */
      user-select: none;
      -webkit-user-drag: none;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: none;
      color: #fff;
      font-size: 34px;
      padding: 8px 14px;
      cursor: pointer;
      border-radius: 50%;
      transition: 0.18s;
      z-index: 5; /* ensure arrow sits above the image */
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      -webkit-tap-highlight-color: transparent;
    }

    .arrow:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.03); }

    /* place arrows inside the container with some inset */
    .left-arrow { left: 12px; }
    .right-arrow { right: 12px; }

    /* smaller screens: put arrows closer and center text */
    @media (max-width: 900px) {
      .split-section { flex-direction: column; text-align: center; gap: 24px; }
      .left-arrow { left: 10px; }
      .right-arrow { right: 10px; }
    }

    @media (max-width: 500px) {
      .left-content h2 { font-size: 28px; }
      .arrow { font-size: 28px; padding: 6px 10px; }
    }





.kerala-seo-wrapper {
  width: 100%;
  padding: 60px 10%;
}

.kerala-seo-flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Images */
.kerala-seo-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 45%;
}

.kerala-seo-gallery .kerala-seo-pic {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Right Content */
.kerala-seo-info {
  width: 55%;
}

.kerala-seo-info .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.kerala-seo-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive for Tablets & Mobile */
@media (max-width: 900px) {
  .kerala-seo-flexbox {
    flex-direction: column;
    text-align: left;
  }

  .kerala-seo-gallery,
  .kerala-seo-info {
    width: 100%;
  }

  .kerala-seo-gallery {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .kerala-seo-gallery {
    flex-direction: column;
    gap: 15px;
  }
}

