 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        header {
            background: #ffffff;
            color: white;
            padding: 1rem 0;
             box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }
        header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: white;
            padding: 12px;
            width: 20%;
        }
        .logo a {
           display: flex;
          justify-content: center;
    }
        .logo img {
            width: 80%;
                }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-menu a {
            color: #0e5796;;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .nav-menu a:hover {
            color: #e91b25;
        }
        a.footlink {
    color: #e91b25;
    text-decoration: none;
    font-weight: 500;
}
      
        .phone {
            background: #e91b25;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold!important;
            font-size: 1.1rem!important;
            transition: all 0.3s!important;
            color: white!important;
            text-decoration: none;
            display: inline-block;
        }
        
        .phone:hover {
            background: #c21620;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(233,27,37,0.4);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .hero {
            background: #e1edf9;
            padding: 80px 0;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-left h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #0e5796;
            line-height: 1.2;
        }
        .hero-left h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0e5796;
    line-height: 1.2;
}

        .hero-left p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #666;
            line-height: 1.8;
        }
        
        .hero-right {
            position: relative;
        }
        
        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(14,87,150,0.2);
        }
        
        .cta-button {
            display: inline-block;
            background: #e91b25;
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(233,27,37,0.3);
        }
        
        .cta-button:hover {
            background: #c21620;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233,27,37,0.5);
        }
        a.cta-button.whatsappbtn {
    background: #1DAA61;
    box-shadow: 0 5px 20px rgb(29 170 97 / 49%);
}
a.cta-button.whatsappbtn:hover{
    box-shadow: 0 8px 25px rgba(29 170 97/ 70%);
}
.mt-5 {
    margin-top: 40px;
}
section.benefits-uk {
    padding: 80px 0;
    text-align: center;
}
section.migrate-aus {
    padding: 80px 0;
    background: #f5faff;
    text-align: center;
}
section.migrate-nzd {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}
.box-container {
    text-align: left;
}
.box-container {
    text-align: left;
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 40px;
}
img.right-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(14, 87, 150, 0.2);
}
ul.whatweoffer i {
    color: #0e5796;
}
h3.sub-head {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0e5796;
    line-height: 1.2;
}
ul.whatweoffer {
   padding: 0 !important;
    display: flex;
    gap: 26px;
    padding-bottom: 15px !important;
    margin-left: 0px !important;
    list-style: none;
    align-items: center;
}
.box {
    width: 100%;
}
        .benefits {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #0e5796;
        }
        
        .benefits-grid {
            display: grid;
           grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .benefit-icon i {
             color: white;
        }
        .benefit-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid #e91b25;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(14,87,150,0.2);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0e5796, #0a4575);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0e5796;
        }
        
        .benefit-card p {
            color: #666;
            line-height: 1.8;
        }
        .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: #e91b25;
    box-shadow: 0 5px 20px rgba(233, 27, 37, 0.15);
}

span.flag img {
    width: 70%;
}
.destination-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.destination-card .flag {
    font-size: 3.5rem;
    margin-bottom: 10px;
    display: block;
}
.destination-card h3 {
    font-size: 1.1rem;
    color: #0e5796;
    font-weight: 600;
}
        .process {
            padding: 80px 0;
            background: white;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .step {
            text-align: center;
            padding: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #e91b25;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #0e5796;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #0e5796 0%, #0a4575 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 40px 0;
            text-align: center;
        }
        
        footer p {
            margin-bottom: 10px;
        }
        
        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                padding: 20px 0;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-left h1 {
                font-size: 2.5rem;
            }
            
            .hero-left p {
                font-size: 1.1rem;
            }
            
            .hero-image {
                height: 350px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }