﻿/*==================================================
AARAMBH IP Associates
Style Sheet
==================================================*/


/*==========================
Google Fonts
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');


/*==========================
Root Variables
==========================*/

:root {
    --primary: #0B2341;
    --secondary: #C79A2B;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #222222;
    --text: #555555;
    --border: #e8e8e8;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --transition: .35s ease;
}


/*==========================
Reset
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*section {
    padding: 90px 0;
}*/


/*==========================
Typography
==========================*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond',serif;
    color: var(--primary);
    font-weight: 700;
}

h1 {
    font-size: 68px;
    line-height: 1.1;
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 28px;
}

p {
    font-size: 16px;
    color: #666;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 15px;
}


/*==========================
Navbar
==========================*/

.navbar {
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
    transition: .4s;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 600;
    margin-left: 25px;
    font-size: 15px;
}

    .navbar-nav .nav-link:hover {
        color: var(--secondary);
    }

    .navbar-nav .nav-link.active {
        color: var(--secondary);
        font-weight: 700;
    }

        .navbar-nav .nav-link.active::after {
            content: "";
            display: block;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            margin-top: 5px;
        }

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.dropdown-item {
    padding: 12px 20px;
}

    .dropdown-item:hover {
        background: var(--secondary);
        color: #fff;
    }


/*==========================
Buttons
==========================*/

.btn {
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold {
    background: var(--secondary);
    color: #fff;
}

    .btn-gold:hover {
        background: var(--primary);
        color: #fff;
    }

.consultation-btn {
    background: var(--secondary);
    color: #fff;
    margin-left: 30px;
}

    .consultation-btn:hover {
        background: var(--primary);
        color: #fff;
    }


/*==========================
Hero Section
==========================*/

.hero {
    position: relative;
    min-height: 700px; /* Pehle 100vh tha */
    padding: 150px 0 80px; /* Navbar ke liye top spacing */
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(11,35,65,.85), rgba(11,35,65,.85)), url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h5 {
        color: var(--secondary);
        letter-spacing: 3px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .hero h1 {
        color: #fff;
        font-size: 60px;
        line-height: 1.15;
        max-width: 900px;
        margin: 20px auto;
    }

    .hero p {
        color: #ddd;
        max-width: 800px;
        font-size: 18px;
        line-height: 1.8;
        margin: 0 auto 30px;
    }

.btn-outline-light {
    border: 2px solid #fff;
}

    .btn-outline-light:hover {
        background: #fff;
        color: var(--primary);
    }

/*==========================
Responsive
==========================*/

@media (max-width:991px) {

    .hero {
        min-height: auto;
        padding: 140px 0 70px;
        text-align: center;
    }

        .hero h1 {
            font-size: 46px;
        }

        .hero p {
            margin: 0 auto 30px;
        }
}

@media (max-width:576px) {

    .hero {
        padding: 120px 0 60px;
    }

        .hero h1 {
            font-size: 36px;
        }

        .hero h5 {
            font-size: 14px;
        }

        .hero p {
            font-size: 16px;
        }
}


/*==========================
Common Cards
==========================*/

.service-box,
.blog-card,
.process-box,
.industry-box {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .service-box:hover,
    .blog-card:hover,
    .process-box:hover,
    .industry-box:hover {
        transform: translateY(-10px);
    }
/*==================================================
ABOUT SECTION
==================================================*/

.about {
    background: #fff;
}

    .about img {
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .about h2 {
        margin-bottom: 25px;
    }

    .about p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .about h3 {
        color: var(--secondary);
        font-size: 42px;
        margin-bottom: 5px;
    }

    .about .btn {
        margin-top: 20px;
    }


/*==================================================
PRACTICE AREA
==================================================*/

.practice-area {
    background: var(--light);
}

    .practice-area .section-title {
        margin-bottom: 15px;
    }

    .practice-area .section-text {
        max-width: 700px;
        margin: auto;
        color: #666;
    }


/* Service Card */

.service-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
    border: 1px solid transparent;
}

    .service-box:hover {
        transform: translateY(-10px);
        border-color: var(--secondary);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .service-box i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        background: rgba(199,154,43,.10);
        color: var(--secondary);
        font-size: 34px;
        margin-bottom: 25px;
    }

    .service-box h4 {
        margin-bottom: 18px;
    }

    .service-box p {
        font-size: 15px;
        color: #666;
        min-height: 90px;
    }

    .service-box a {
        color: var(--primary);
        font-weight: 600;
    }

        .service-box a:hover {
            color: var(--secondary);
        }


/*==================================================
WHY CHOOSE US
==================================================*/

.why-us {
    background: #fff;
}

    .why-us img {
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .why-us h2 {
        margin-bottom: 20px;
    }

    .why-us p {
        margin-bottom: 25px;
    }

    .why-us .fa-circle-check {
        margin-right: 10px;
        font-size: 18px;
    }

    .why-us .col-6 {
        font-weight: 500;
        color: var(--primary);
    }

    .why-us .btn {
        margin-top: 25px;
    }


/*==================================================
COUNTER SECTION
==================================================*/

.counter-section {
    background: linear-gradient(135deg,var(--primary),#16345e);
    padding: 80px 0;
}

.counter-box {
    text-align: center;
    color: #fff;
}

    .counter-box h2 {
        color: var(--secondary);
        font-size: 54px;
        margin-bottom: 10px;
    }

    .counter-box p {
        color: #ddd;
        font-size: 17px;
        margin: 0;
    }


/*==================================================
SECTION SPACING
==================================================*/

.section-subtitle {
    font-size: 15px;
}

.section-title {
    font-size: 48px;
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .about,
    .why-us {
        text-align: center;
    }

        .about img,
        .why-us img {
            margin-bottom: 40px;
        }
}

@media(max-width:576px) {

    .service-box {
        padding: 30px 20px;
    }

    .counter-box {
        margin-bottom: 35px;
    }

        .counter-box h2 {
            font-size: 42px;
        }
}
/*==================================================
INDUSTRIES SECTION
==================================================*/

.industries {
    background: var(--light);
}

.industry-box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    height: 100%;
}

    .industry-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }

    .industry-box i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        background: rgba(199,154,43,.10);
        color: var(--secondary);
        font-size: 32px;
        margin-bottom: 20px;
    }

    .industry-box h5 {
        color: var(--primary);
        margin: 0;
        font-size: 22px;
    }


/*==================================================
PROCESS SECTION
==================================================*/

.process {
    background: #fff;
}

.process-box {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: var(--transition);
    height: 100%;
}

    .process-box:hover {
        transform: translateY(-8px);
    }

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 70px;
    margin: 0 auto 25px;
}

.process-box h4 {
    margin-bottom: 15px;
}

.process-box p {
    margin-bottom: 0;
}


/*==================================================
CTA SECTION
==================================================*/

.cta-section {
    background: linear-gradient(135deg,var(--primary),#183c69);
    color: #fff;
    padding: 80px 0;
}

    .cta-section h2 {
        color: #fff;
        margin-bottom: 15px;
    }

    .cta-section p {
        color: #ddd;
        margin-bottom: 0;
    }

    .cta-section .btn {
        background: #fff;
        color: var(--primary);
        border-radius: 50px;
        padding: 15px 35px;
        font-weight: 600;
    }

        .cta-section .btn:hover {
            background: var(--secondary);
            color: #fff;
        }


/*==================================================
BLOG SECTION
==================================================*/

.blog {
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: var(--transition);
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

    .blog-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .blog-card .p-4 {
        padding: 30px !important;
    }

    .blog-card h4 {
        margin-bottom: 15px;
        font-size: 28px;
    }

    .blog-card p {
        margin-bottom: 20px;
    }

    .blog-card a {
        color: var(--secondary);
        font-weight: 600;
    }

        .blog-card a:hover {
            color: var(--primary);
        }


/*==================================================
GENERAL SPACING
==================================================*/

.py-5 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}


/*==================================================
IMAGE EFFECTS
==================================================*/

.about img,
.why-us img,
.blog-card img {
    transition: .5s;
}

    .about img:hover,
    .why-us img:hover,
    .blog-card:hover img {
        transform: scale(1.04);
    }


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .process-box,
    .industry-box,
    .blog-card {
        margin-bottom: 30px;
    }

    .cta-section {
        text-align: center;
    }

        .cta-section .btn {
            margin-top: 30px;
        }
}

@media(max-width:768px) {

    .industry-box {
        padding: 25px 15px;
    }

        .industry-box i {
            width: 65px;
            height: 65px;
            line-height: 65px;
            font-size: 26px;
        }

    .process-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }

    .blog-card img {
        height: 220px;
    }
}

@media(max-width:576px) {

    .cta-section {
        padding: 60px 20px;
    }

        .cta-section h2 {
            font-size: 34px;
        }

    .blog-card h4 {
        font-size: 24px;
    }
}
/*==================================================
FOOTER
==================================================*/

.footer {
    background: #08192d;
    color: #d7dce5;
    padding: 80px 0 30px;
}

    .footer h5 {
        color: #ffffff;
        margin-bottom: 25px;
        font-size: 24px;
    }

    .footer p {
        color: #bfc8d4;
        line-height: 1.9;
    }

    .footer ul {
        padding: 0;
        margin: 0;
    }

        .footer ul li {
            list-style: none;
            margin-bottom: 12px;
        }

            .footer ul li a {
                color: #bfc8d4;
                text-decoration: none;
                transition: .3s;
            }

                .footer ul li a:hover {
                    color: var(--secondary);
                    padding-left: 6px;
                }

    .footer hr {
        border-color: white;;
        margin: 40px 0 20px;
    }

    .footer .text-center {
        color: #bfc8d4;
        font-size: 15px;
    }


/*==================================================
SOCIAL ICONS
==================================================*/

.social-icons {
    margin-top: 25px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
        margin-right: 10px;
        transition: .35s;
    }

        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }


/*==================================================
WHATSAPP BUTTON
==================================================*/

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .35s;
}

    .whatsapp:hover {
        transform: scale(1.08);
        color: #fff;
    }


/*==================================================
SCROLL TO TOP
==================================================*/

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: var(--primary);
    }


/*==================================================
STICKY NAVBAR
==================================================*/

.navbar.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,.10);
}


/*==================================================
SMOOTH TRANSITIONS
==================================================*/

.service-box,
.blog-card,
.industry-box,
.process-box,
.btn,
.nav-link,
.footer a {
    transition: .35s ease;
}


/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }


/*==================================================
SELECTION COLOR
==================================================*/

::selection {
    background: var(--secondary);
    color: #fff;
}


/*==================================================
UTILITY CLASSES
==================================================*/

.shadow-box {
    box-shadow: var(--shadow);
}

.rounded-xl {
    border-radius: 20px;
}

.bg-primary-custom {
    background: var(--primary);
}

.text-primary-custom {
    color: var(--primary);
}

.text-gold {
    color: var(--secondary);
}


/*==================================================
ANIMATION
==================================================*/

.fade-up {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .footer {
        text-align: center;
    }

        .footer .col-lg-2,
        .footer .col-lg-3,
        .footer .col-lg-4 {
            margin-bottom: 35px;
        }
}

@media(max-width:768px) {

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 34px;
    }

    section {
        padding: 70px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .consultation-btn {
        margin-top: 20px;
        margin-left: 0;
        display: block;
    }
}

@media(max-width:576px) {

    .hero {
        text-align: center;
    }

        .hero .btn {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }

    .top-bar {
        display: none;
    }

    .whatsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}
